body {
  background-color: #f0f4f9;
  font-family: Roboto, Arial, sans-serif;
  letter-spacing: 0.5px;
}

.login-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.login-container {
  max-width: 1050px;
  width: 100%;
}

.login-box {
  background-color: #fff;
  border-radius: 28px;
  padding: 48px 40px 36px;
  width: 100%;
  box-shadow: 0px 1px 6px rgba(32, 33, 36, 0.28);
}

.google-logo {
  width: 75px;
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

p.subtitle {
  font-size: 16px;
  color: #202124;
  margin-bottom: 24px;
}

.form-control {
  height: 56px;
  font-size: 16px;
}

.form-text a,
.form-link {
  font-size: 14px;
  text-decoration: none;
}

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

.btn-next {
  border-radius: 24px;
  min-width: 90px;
  padding: 10px 24px;
}

.btn-area {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 36px;
}

/* -----------------------------------FLOATING LABEL CSS START ----------------------------------- */

.floating-label {
  position: relative;
  margin-bottom: 1.5rem;
}

.floating-label input {
  border: 1px solid gray;
  /* padding: 1.2rem 2.5rem 0.5rem 0.5rem; */
  /* space for eye icon */
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.floating-label label {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  color: gray;
  background: white;
  padding: 0 0.2rem;
  transition: 0.2s ease all;
  pointer-events: none;
  transform: translateY(-50%);
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.75rem;
  color: #0b43a1;
  transform: translateY(-50%) scale(0.9);
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 2;
  opacity: 0.7;
}

/* ------------------------------------FLOATING LABEL CSS END ----------------------------------- */

/* ------------------------------------GRADIENT BTN CSS START ----------------------------------- */

.gradient-btn {
  background: linear-gradient(45deg, #0056b3, #0096ff);
  /* Blue gradient */
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 50px;
}

.gradient-btn:hover {
  background: linear-gradient(45deg, rgb(0, 76, 158), rgb(0, 125, 214));
  /* Darker gradient on hover */
}

.gradient-btn:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  /* Subtle shadow on focus */
}

/* ------------------------------------GRADIENT BTN CSS END ----------------------------------- */

/* ------------------------------------CUSTOM CSS START ----------------------------------- */

.text_lightblue {
  color: #2f9cd7;
}

.text_darkblue {
  color: #282e48;
}

.custom_a_tag {
  color: #0b57d0;
  text-decoration: none;
}

.custom_a_tag:hover {
  color: #0b57d0;
  text-decoration: underline;
}

.alert_div {
  border-radius: 30px;
}

.blue_font {
  color: #2f9cd7;
}

/* for focus input field */
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #0b43a1;
  outline: 0.5px solid #0b43a1;
  box-shadow: 0 0 0 0.2rem rgba(247, 248, 248, 0.25);
}

/* ------------------------------------CUSTOM CSS END ----------------------------------- */

/* ------------------------------------FOOTER LINKS START ----------------------------------- */

.footer-box {
  padding: 0 40px;
  width: 100%;
}

.footer-links {
  font-size: 13px;
  color: #5f6368;
  margin: 0px;
}

.footer-link {
  color: #5f6368;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-link:hover {
  background-color: #0077db;
  color: white;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

/* ------------------------------------FOOTER LINKS END ----------------------------------- */
