/* login.css */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Ubuntu', sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #003366, #004080 40%, #3385ff 100%);
}

.login-container {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 2rem;
  background-color: #171717;
  background: rgba(40, 40, 40, 0.9);
  border-radius: 25px;
  transition: .4s ease-in-out;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.form:hover {
  transform: scale(1.02);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#heading {
  text-align: center;
  margin: 1em 0;
  color: #FFD700;
  font-size: 2.2rem;
  font-family: 'Yeon Sung', cursive;
}

.field {
  display: flex;
  align-items: center;
  gap: 0.5em;
  border-radius: 25px;
  padding: 0.8em;
  background-color: #171717;
  box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.3);
}

.input-icon {
  height: 1.5em;
  width: 1.5em;
  fill: #FFD700;
}

.input-field {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #fff;
  font-size: 1.1em;
  padding: 0.5em;
}

.btn {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}

.button1 {
  padding: 0.8em 2em;
  border-radius: 8px;
  border: none;
  background: linear-gradient(45deg, #8B008B, #FF69B4);
  color: white;
  font-family: 'Yeon Sung', cursive;
  font-size: 1.1em;
  cursor: pointer;
  transition: 0.3s ease;
}

.button1:hover {
  background: linear-gradient(45deg, #FF69B4, #8B008B);
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

.bottom_left {
  position: fixed;
  bottom: 10px;
  left: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
}

@media (max-width: 480px) {
  .form {
    margin: 0 15px;
    padding: 1.5em;
  }
  
  #heading {
    font-size: 1.5em;
  }
}

/* GNU logo styling */
.gnu {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}

.gnu p {
  margin: 0; /* Remove default paragraph margins */
}

.gnu img {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.gnu img:hover {
  transform: scale(1.05) rotate(-5deg);
}
