/* Login Page Styles - Matching Admin Login Theme */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #BBDCFD; /* Light blue background */
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-container {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 0;
  box-sizing: border-box;
  min-height: calc(100vh - 60px);
}

.login-container {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 380px !important;
  padding: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.login-header {
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
}

/* Error message styling */
.alert-danger {
  font-size: 12px;
  padding: 6px 10px;
  margin-bottom: 10px !important;
  border-radius: 4px;
}

.login-header h1 {
  font-size: 22px;
  color: #000;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: center;
}

.login-header p {
  font-size: 14px;
  color: #2196F3;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.form-group {
  margin-bottom: 12px;
  position: relative;
  width: 100%;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: #444;
  font-weight: normal;
}

.input-with-icon {
  position: relative;
}

.input-with-icon img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.form-control {
  width: 100%;
  padding: 8px 15px 8px 45px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  color: #666;
  background-color: #FFFFFF;
  height: 38px;
}

.form-control:focus {
  outline: none;
  border-color: #2196F3;
}

.forgot-password {
  text-align: left;
  margin-bottom: 15px;
  margin-top: -5px;
}

.forgot-password a {
  color: #000;
  text-decoration: underline;
  font-size: 12px;
}

.login-btn {
  width: 100%;
  background-color: #1976D2;
  color: white;
  border: none;
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 40px;
}

.login-btn:hover {
  background-color: #0d8aee;
}

.support-text {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #333;
  width: 100%;
  padding-top: 10px;
}

.support-text a {
  color: #1976D2;
  text-decoration: underline;
  font-weight: normal;
}

/* Footer styling */
.footer {
  background-color: #BBDCFD;
  padding: 1rem 0;
  margin-top: auto;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 20;
}

.footer p {
  margin: 0;
  color: #000;
  font-size: 1rem;
}
