body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to right, #e0eafc, #cfdef3);
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 40px 20px;
}

.login-box {
  background: #fff;
  padding: 30px 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  width: 100%;
  animation: fadeIn 0.6s ease-in-out;
}

.login-box h2 {
  text-align: center;
  color: #0052D4;
  margin-bottom: 10px;
}

.subtext {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.login-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border 0.3s;
}

.login-form input:focus {
  border-color: #4364F7;
  outline: none;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #0052D4;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background: #0039a6;
}

.register-text {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.register-text a {
  color: #0052D4;
  text-decoration: none;
}

.register-text a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
