body {
  width: 100%;
  background-color: #fff;
  font-family: NHaasGroteskDSPro, sans-serif;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  outline: none;
  border: none;
}

.log-signup-body-sec {
  width: 100%;
}

.login-box-sec {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.login-box-sec .login {
  width: 66%;
  border-radius: 10px;
  box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.3);
  padding: 40px;
  background-color: #fff;
}

.login h1 {
  text-align: center;
  font-size: 30px;
  color: #272727;
  font-weight: 600;
}

.form-group {
  margin-top: 30px;
  width: 100%;
}

.form {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
}

.form p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #272727;
  width: 20%;
}

.input-wrapper {
  position: relative;
  width: 80%;
  margin-left: 10px;
}

.input-wrapper input {
  padding: 10px 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.input-wrapper input[type="password"] {
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.5rem;
  color: #555;
}

.button-back-wrap {
  text-align: center;
  margin-top: 30px;
}

.button-back-wrap button {
  padding: 18px 30px;
  background-color: #f20000;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  width: 20%;
}

.forgot-sec {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-sec a {
  font-size: 14px;
  color: #272727;
  text-decoration: none;
}

.google-login {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.google-login a {
  display: inline-block;
  width: 75%;
}

.google-login button {
  padding: 15px 25px;
  background-color: #fff;
  border-radius: 5px;
  color: #272727;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0px 1px 5px 2px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.google-login button img {
  width: 20px;
  height: auto;
}

/* Cand login button (custom override) */
.cand-lgn-button {
  text-align: left;
  margin: 20px 0;
  width: 100%;
  padding-left: 120px;
}

/* ========== Responsive Fixes ========== */
@media screen and (max-width: 768px) {
  .login-box-sec {
    padding-left: 0;
    padding-right: 0;
  }

  .login-box-sec .login {
    width: 100%;
    padding: 20px;
    box-shadow: none;
  }

  .form {
    flex-direction: column;
    align-items: flex-start;
  }

  .form p,
  .input-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .toggle-password {
    right: 15px;
  }

  .button-back-wrap button {
    width: 100%;
  }

  .google-login a {
    width: 100%;
  }

  .cand-lgn-button {
    padding-left: 0 !important;
    text-align: center;
  }

  .cand-lgn-button button {
    width: 100% !important;
  }
}
