.login-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 3em 2em;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-top: 120px;
  text-align: center;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  margin-top: 2em;
}

.form-input {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #5ce1e6;
  box-shadow: 0 0 5px rgba(92, 225, 230, 0.5);
}

.btn-submit {
  padding: 0.8em;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #5ce1e6, #2c5364);
  color: white;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #2c5364, #5ce1e6);
}
