html,
body {
  background-color: #f4f5f7;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login_container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.login_card {
  background-color: #ffffff;
  width: 360px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(9, 30, 66, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#loginBox,
#resetBox {
  width: 95%;
}

#passwordToggle {
  width: fit-content;
  user-select: none;
  cursor: pointer;
  margin: 5px 0 15px 0;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0f172a;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #334155;
}

input {
  background-color: #f8fafc;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
}

input:focus {
  border-color: #0052cc;
  box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.1);
}

.login_btn {
  background-color: #0052cc;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login_btn:hover {
  background-color: #003f9e;
}

.login_footer {
  margin-top: 15px;
  font-size: 14px;
  color: #475569;
  text-align: center;
}

.login_footer a {
  color: #0052cc;
  text-decoration: none;
  font-weight: 500;
}

.login_footer a:hover {
  text-decoration: underline;
}















.loading {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading_logo {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #4285F4;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}