/* Import Google Font for consistency */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container styling */
.auth-container {
  width: 90%;
  max-width: 400px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Title */
.auth-container h2 {
  color: #5b18eb;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Input Field */
.auth-container input {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  outline: none;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.auth-container input:focus {
  border-color: #5b18eb;
  box-shadow: 0 0 8px rgba(91, 24, 235, 0.2);
}

/* Update Password Button */
.updatebtn {
  width: 100%;
  background-color: #5b18eb;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.updatebtn:hover, 
#update-btn:hover {
  background-color: #4a12c6;
  transform: scale(1.03);
}

.updatebtn:active, 
#update-btn:active {
  transform: scale(0.98);
}

/* Responsive */
@media screen and (max-width: 600px) {
  .auth-container {
    padding: 30px 20px;
  }

  .auth-container h2 {
    font-size: 1.6rem;
  }

  #update-btn {
    font-size: 0.95rem;
  }
}
