
/* Full-page wrapper for auth pages */
.auth-wrapper {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
 
}

/* Form container */
.auth-form {
  position: relative; /* ✅ required for z-index to apply */
  z-index: 1;    
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  min-width: 250px;
  max-width: 320px; 
  text-align: center;
  font-size: 15px;
}

/* Input fields inside the auth form */
.auth-form input[type="text"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #f5f5f5; /* light gray default */
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.auth-form input[type="text"]:focus,
.auth-form input[type="password"]:focus {
  outline: none;
  border: 1px solid #424451; /* soft green or gray accent */
 
}

/* Placeholder text color for cleaner look */
.auth-form input::placeholder {
  color: #999;
}


/* Submit button */
.auth-form button.submit-btn {
  width: 100%; /* takes full input width */
  background:  rgb(150, 148, 148);
  border: 1px solid rgb(101, 100, 100);
  border-radius: 6px;
  color: rgb(247, 243, 243);
  cursor: pointer;
  font-size: 15px;
  padding: 5px 10px;
  transition: all 0.3s;
  
}

.auth-form button.submit-btn:hover {
  background: rgb(121, 118, 118);
  color: white;
}

@media (max-width: 480px) {
  .auth-form {
    padding: 20px;
    max-width: 250px;
  }
}



