* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  position: relative;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}

.login-header h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group select,
.form-group input {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
  background-color: #f8f9fa;
}

.form-group select:focus,
.form-group input:focus {
  border-color: #b91c1c;
  background-color: white;
}

.captcha-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.captcha-placeholder input[type="checkbox"] {
  width: auto;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.captcha-placeholder label {
  color: #666;
  font-size: 14px;
  cursor: pointer;
}

.login-btn {
  background: linear-gradient(135deg, #b91c1c, #d4af37);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(185, 28, 28, 0.3);
}

.login-links {
  text-align: center;
  margin-top: 20px;
}

.forgot-password {
  color: #b91c1c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.forgot-password:hover {
  text-decoration: underline;
}

.back-to-home {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.back-to-home a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.back-to-home a:hover {
  color: #b91c1c;
}

/* Responsive Design */
@media screen and (max-width: 480px) {
  .login-container {
    padding: 30px 20px;
  }

  .login-header h2 {
    font-size: 1.3rem;
  }

  .form-group select,
  .form-group input {
    padding: 12px;
    font-size: 14px;
  }
}
