body {
  background-color: #000;
  font-family: 'Roboto', sans-serif;
}
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid #e0b24a;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(224, 178, 74, 0.5);
}
.sign {
text-align: center;
font-family: 'Playfair Display', serif;
color: #e0b24a;
font-size: medium;
margin-top: -4rem; /* Adjust this value as needed */
}
.login-title {
  font-family: 'Playfair Display', serif;
  color: #e0b24a;
  margin-bottom: 1.5rem;
  text-align: center;
}
.form-control, .form-control:focus {
  background-color: #333;
  color: #e0b24a;
  border: 1px solid #e0b24a;
  border-radius: 0.5rem;
}
.form-control::placeholder {
  color: #bbb;
}
.form-label {
  color: #e0b24a;
}
.btn-custom {
  background-color: #e0b24a;
  color: #000;
  font-weight: bold;
  border-radius: 0.5rem;
}
.btn-custom:hover {
  background-color: #c9993a;
  color: #fff;
}
a.forgot-link {
  color: #e0b24a;
  text-decoration: none;
}
a.forgot-link:hover {
  text-decoration: underline;
}
