:root {
  --primary-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.18);
}

body {
  background: var(--primary-gradient);
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 15px;
  display: flex;
  align-items: center;
}

.password-toggle {
  font-size: 1rem;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 38px;
  color: #6b7280;
}

label,
.already {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
label {
  font-weight: bold;
}

.card-header {
  background-color: rgba(2, 4, 113, 0.61);
}

.invalid-feedback {
  color: whitesmoke;  
  margin-left: 0.3rem;
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

.form-control,
.form-select,
.btn {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
}

.card-header {
  padding: 0.75rem 1rem;
}

.card-body {
  padding: 1rem;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

#create-btn {
  border: none;
  background: linear-gradient(135deg, #2563eb, #082eaa); /* Blue gradient */
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.4);
  transition: ease-in 0.2s;
}
#create-btn:hover {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

#reset-btn {
  border: none;
  background: linear-gradient( 135deg,#3fa0f4,  #1296bef1);
  box-shadow: 0 4px 10px rgba(81, 63, 244, 0.4);
    transition: ease-in 0.2s;
}
#reset-btn:hover {
   background: linear-gradient( 135deg,#3fa0f4,  #1296bef1);
  box-shadow: 0 6px 15px rgba(63, 78, 244, 0.6);
  transform: translateY(-2px);
}
