* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
}

body {
  min-height: 100vh;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

h3{
  color: white;
  font-size: 15px;
  padding-bottom: 20px;
}

.login-container {
  background-color: #000000;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: visible;
}

.login-container .head {
  text-align: center;
  margin-bottom: 25px;
}

.login-container .head img {
  max-width: 100px;
  max-height: 80px;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

h2 {
  color: white;
  font-size: 24px;
}

.input-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-weight: 500;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background-color: #fff;
}

input[type="checkbox"] {
  margin-right: 6px;
}

.options {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
}

.options a {
  color: yellow;
  text-decoration: none;
  font-weight: 500;
}

.options a:hover {
  text-decoration: underline;
  color: #cab816;
}

button {
  width: 100%;
  padding: 12px;
  background-color: rgb(255, 255, 220);
  color: black;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

button:hover {
  background-color: yellow;
  font-weight: 700;
  transform: scale(1.01);
}

.form-footer {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  color: white;
}

.form-footer a {
  color: yellow;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .login-container {
    padding: 20px;
  }

  .login-container .head img {
    max-width: 80px;
    max-height: 60px;
  }
}
