/* auth-login.css */
/* auth-login.css - updated for exact match to login screenshot */
* {
  box-sizing: border-box;
  font-family: 'Nunito', 'Segoe UI', Tahoma, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #fcfafa;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Page heading */
.login-heading {
  font-size: 26px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 35px;
  text-align: center;
}

/* Shared card style */
/* Reduce padding to decrease height */
.auth-card, .login-box {
  background: #fff;
  padding: 24px; /* Changed from 40px to 24px */
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  width: 100%;
  text-align: center;
}


/* Logo */
.login-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo img {
  width: 172px;
  height: 118px;
  margin-top: -20px;
  margin-bottom: -20px;
}

/* Headings inside the card */
h2 {
  color: #333;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 22px;
}

/* Labels */
label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
  font-size: 15px;
}

/* Inputs */
input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  padding: 11px 12px;
  margin: 10px 0 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  /* background-color: #e8f0fe; ✅ light blue input */
}

input:focus {
  border-color: #2e86de;
  outline: none;
}

/* Buttons */
button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #2e86de;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #1b4f72;
}

/* Alerts */
.alert {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}

.alert-success {
  
  color: #155724;
}

.alert-danger {
 
  color: #721c24;
}

/* Reset link */
.reset-link {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
}

.reset-link a {
  color: #2e86de;
  text-decoration: none;
  font-weight: 500;
}

.reset-link a:hover {
  text-decoration: underline;
}

/* body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-color: #fcfafa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  text-align: center;
  
}

h1 {
  color: #333;
  margin-bottom: 30px;
}

.login-box {
  background: #fff;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  display: inline-block;
  width: 300px;
  
}

.login-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.logo img {
  width: 172px;
  height: 118px;
  
}

input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  width: 100%;
  background-color: #2e86de;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #1b4f72;
}
.reset-link {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.reset-link a {
  color: #2e86de;
  text-decoration: none;
}

.reset-link a:hover {
  text-decoration: underline;
}

.login-box input,
.login-box button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  font-size: 14px;
  box-sizing: border-box;
} */ 