/* ==========================================
   LOGIN PAGE STYLES
   File: login-style.css
   ========================================== */

body.app.flex-row {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body.app.flex-row .login-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 40px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.app.flex-row .btn-login {
  background: linear-gradient(135deg, #e6750a 0%, #ff9500 100%);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 117, 10, 0.4);
}

body.app.flex-row .btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 117, 10, 0.6);
  background: linear-gradient(135deg, #ff9500 0%, #e6750a 100%);
}

body.app.flex-row .btn-login:active {
  transform: translateY(0);
}

body.app.flex-row .btn-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

body.app.flex-row .input-group-text {
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
}

body.app.flex-row .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

body.app.flex-row .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

body.app.flex-row .security-code-container {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 20px 0;
}

body.app.flex-row .security-code-input {
  width: 45px;
  height: 55px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

body.app.flex-row .security-code-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  outline: none;
  transform: scale(1.05);
}

body.app.flex-row .title-login-form {
  font-size: 1.2em;
  font-weight: 800;
  margin-bottom: 10px;
}

body.app.flex-row .logo-container {
  margin-bottom: 20px;
}

body.app.flex-row .card {
  border: none;
  background: transparent;
}

body.app.flex-row .alert {
  border-radius: 10px;
  border: none;
}

body.app.flex-row .security-code-label {
  text-align: center;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
  font-size: 14px;
}

body.app.flex-row .refresh-code-btn {
  background: none;
  border: none;
  color: #667eea;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  padding: 5px;
}

body.app.flex-row .refresh-code-btn:hover {
  color: #764ba2;
}

/* Responsive */
@media (max-width: 767px) {
  body.app.flex-row .login-container {
    padding: 30px 20px;
  }
  body.app.flex-row .title-login-form {
    font-size: 1.4em;
  }
  body.app.flex-row .security-code-input {
    width: 38px;
    height: 48px;
    font-size: 20px;
  }
}
