.main-content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.login-container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.login-header {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.login-icon {
  text-align: center;
  margin-bottom: 20px;
}

.login-icon img {
  width: 100px;
  height: 100px;
  background-color: #ffbb33;
  padding: 15px;
  border-radius: 50%;
}

.form-label {
  font-weight: bold;
  font-size: 1.1rem;
}

.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ffbb33;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.form-check-input {
  background-color: #ffbb33;
  border-color: #ffbb33;
}

.form-check-label {
  color: #ffbb33;
}

.form-check-input:checked {
  background-color: #ffbb33;
  border-color: #ffbb33;
}

.options a {
  color: #ffbb33;
  text-decoration: none;
}

.btn-warning {
  background-color: #ffbb33;
  border: none;
  padding: 10px;
  font-size: 1.2rem;
  width: 100%;
  margin-top: 20px;
  color: #fff;
  text-decoration: none;
}

.btn-warning:hover {
  background-color: #e5a600;
}

.login-footer {
  text-align: center;
  color: red;
  margin-top: 20px;
  font-size: 12px;
}
