.login-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f2ed 0%, #faf7f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.login-card {
  width: 100%;
  max-width: 1200px;
  min-height: 600px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(92, 127, 63, 0.15);
  display: flex;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .login-card {
    flex-direction: column;
    max-width: 90%;
    min-height: auto;
  }
}

.login-brand {
  flex: 1;
  background: linear-gradient(135deg, #5c7f3f 0%, #7a9b5a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.login-brand::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="80" cy="70" r="2.5" fill="rgba(255,255,255,0.08)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="90" cy="20" r="1.8" fill="rgba(255,255,255,0.12)"/></svg>');
  animation: float 20s infinite linear;
  z-index: 1;
}
.login-brand .brand-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (max-width: 768px) {
  .login-brand {
    padding: 30px 20px;
    min-height: auto;
  }
}

@keyframes float {
  0% {
    transform: translateX(-50px) translateY(-50px);
  }
  100% {
    transform: translateX(50px) translateY(50px);
  }
}
.brand-logo {
  margin-bottom: 20px;
  animation: pulse 2s infinite ease-in-out;
}
.brand-logo .logo-image {
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  border-radius: 15%;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
  object-fit: cover;
}
@media (max-width: 768px) {
  .brand-logo {
    margin-bottom: 15px;
  }
  .brand-logo .logo-image {
    max-width: 80px;
    max-height: 80px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.brand-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .brand-title {
    font-size: 1.8rem;
  }
}

.brand-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .brand-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

.brand-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.brand-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  opacity: 0.95;
}
.brand-features li i {
  margin-right: 12px;
  font-size: 1.1rem;
}

.login-form {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}
@media (max-width: 768px) {
  .login-form {
    padding: 40px 30px;
  }
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}
.login-header h2 {
  color: #2c3e18;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.login-header p {
  color: #6b7c5a;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 768px) {
  .login-header {
    margin-bottom: 30px;
  }
  .login-header h2 {
    font-size: 1.6rem;
  }
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}
.form-group label {
  display: block;
  color: #2c3e18;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.input-group .input-group-text {
  position: absolute;
  left: 15px;
  z-index: 3;
  background: none;
  border: none;
  color: #6b7c5a;
  font-size: 1.1rem;
}
.input-group .form-control {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid rgb(151.4, 167.8598130841, 134.9401869159);
  border-radius: 10px;
  font-size: 1rem;
  background: #ffffff;
  color: #2c3e18;
  transition: all 0.3s ease;
}
.input-group .form-control:focus {
  border-color: #5c7f3f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(92, 127, 63, 0.1);
}
.input-group .form-control::placeholder {
  color: rgb(121.8, 141.1514018692, 102.4485981308);
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: #5c7f3f;
}
.form-check .form-check-label {
  color: #6b7c5a;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.btn-login {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #5c7f3f 0%, #7a9b5a 100%);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 127, 63, 0.25);
}
.btn-login:active {
  transform: translateY(0);
}
.btn-login::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn-login:hover::before {
  left: 100%;
}
.btn-login i {
  margin-right: 8px;
}

.divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
  color: #6b7c5a;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgb(136.6, 155.4112149533, 117.7887850467);
}
.divider span {
  background: #ffffff;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.register-link {
  text-align: center;
}
.register-link p {
  color: #6b7c5a;
  margin-bottom: 15px;
}
.register-link .btn-outline-login {
  padding: 12px 30px;
  border: 2px solid #5c7f3f;
  background: transparent;
  color: #5c7f3f;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.register-link .btn-outline-login:hover {
  background: #5c7f3f;
  color: #ffffff;
  transform: translateY(-1px);
  text-decoration: none;
}
.register-link .btn-outline-login i {
  margin-right: 8px;
}

.alert {
  border: none;
  border-radius: 8px;
  padding: 12px 15px;
}
.alert.alert-success {
  background: rgb(164.2210526316, 196.6421052632, 137.3578947368);
  color: #4a6b2f;
  border-left: 4px solid #5c7f3f;
}

.text-danger {
  color: #dc3545 !important;
  font-size: 0.875rem;
  margin-top: 5px;
}

@media (max-width: 576px) {
  .login-container {
    padding: 15px;
  }
  .login-card {
    margin: 0;
    border-radius: 8px;
    max-width: 100%;
  }
  .login-brand {
    padding: 25px 20px;
    min-height: auto;
  }
  .login-brand .brand-logo .logo-image {
    max-width: 70px;
    max-height: 70px;
  }
  .brand-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .brand-subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .login-form {
    padding: 25px 20px;
  }
  .login-header {
    margin-bottom: 25px;
  }
  .login-header h2 {
    font-size: 1.4rem;
  }
  .login-header p {
    font-size: 0.9rem;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-check {
    margin-bottom: 20px;
  }
  .divider {
    margin: 20px 0;
  }
  .btn-login {
    padding: 14px;
    font-size: 1rem;
  }
  .register-link .btn-outline-login {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}
@media (max-width: 375px) {
  .login-container {
    padding: 10px;
  }
  .login-brand {
    padding: 20px 15px;
  }
  .login-brand .brand-logo .logo-image {
    max-width: 60px;
    max-height: 60px;
  }
  .brand-title {
    font-size: 1.3rem;
  }
  .brand-subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .login-form {
    padding: 20px 15px;
  }
  .login-header {
    margin-bottom: 20px;
  }
  .login-header h2 {
    font-size: 1.25rem;
  }
  .form-group {
    margin-bottom: 18px;
  }
  .form-group label {
    font-size: 0.9rem;
  }
  .input-group .form-control {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  .input-group .input-group-text {
    left: 12px;
    font-size: 1rem;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .login-container {
    padding: 10px;
    align-items: flex-start;
    overflow-y: auto;
  }
  .login-card {
    flex-direction: row;
    min-height: auto;
    max-width: 100%;
  }
  .login-brand {
    min-height: auto;
    padding: 20px;
    flex: 0 0 35%;
  }
  .login-brand .brand-logo .logo-image {
    max-width: 50px;
    max-height: 50px;
  }
  .brand-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .brand-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
  .login-form {
    padding: 20px 25px;
    flex: 0 0 65%;
  }
  .login-header {
    margin-bottom: 15px;
  }
  .login-header h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  .login-header p {
    font-size: 0.85rem;
  }
  .form-group {
    margin-bottom: 12px;
  }
  .form-check {
    margin-bottom: 12px;
  }
  .input-group .form-control {
    padding: 10px 10px 10px 38px;
  }
  .btn-login {
    padding: 10px;
    font-size: 0.95rem;
  }
  .divider {
    margin: 12px 0;
  }
  .register-link p {
    margin-bottom: 8px;
    font-size: 0.85rem;
  }
  .register-link .btn-outline-login {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}
@supports (padding: env(safe-area-inset-bottom)) {
  .login-container {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/*# sourceMappingURL=login.css.map */
