/* 
    GLOBAL STYLE FOR AUTHORIZATION PAGE
     
    1. login Page (Login.php)
    2. Register Page (daftar.php)
    3. Lupa Password (ForgetPassword.php)
    4. Sukses Lupa Password (Sukses.php)


*/

/* ========= LOGIN CLIENT ============ */

.login-container {
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  max-width: 5000px;
  margin: 80px auto;
}

.login-image {
  display: flex;
  justify-content: start;
  padding: 60px 50px;
}

.login-form-section {
  padding: 60px 50px;
}

.welcome-text {
  font-size: 28px;
  margin-bottom: 2px;
  line-height: 58px;
}

.login-title {
  color: #4473af;
  font-size: 48px;
  margin-bottom: 30px;
  line-height: 38px;
}

.form-label {
  color: #495057;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 26px;
}

.form-control-custom {
  border: 1px solid #999999;
  border-radius: 8px;
  padding: 22px 10px;
  font-size: 16px;
  line-height: 27px;
  transition: all 0.3s ease;
}

.form-control-custom::placeholder {
  color: #b0b0b0;
  opacity: 1;
}

.form-control-custom::-webkit-input-placeholder {
  color: #b0b0b0;
}

.form-control-custom::-moz-placeholder {
  color: #b0b0b0;
  opacity: 1;
}

.form-control-custom:-ms-input-placeholder {
  color: #b0b0b0;
}

.btn-signin {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 30px;
  font-size: 16px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(180deg, #4c80c2 0%, #345d8f 100%);
  box-shadow: 0 4px 6px rgba(52, 93, 143, 0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-weight: 600;
  border: none;
}

.btn-signin:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(52, 93, 143, 0.5);
  background: linear-gradient(180deg, #5b8dce 0%, #345d8f 100%);
}

.forgot-password {
  color: #ad3113;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.forgot-password:hover {
  color: #3d6ba8;
  text-decoration: underline;
}

.register-link {
  color: #4c80c2;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease;
}

.register-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 15px 0;
  color: #595959;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #d1d1d1;
  margin: 0 15px;
}

.social-login-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.btn-google {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  color: #476c8e;
  background: linear-gradient(180deg, #ebecf5 0%, #d1d3e0 100%);
  border: 1px solid #4c80c2;
  box-shadow: 0 4px 6px rgba(174, 177, 194, 0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-weight: 600;
  border: 1px solid #d1d3e0;
  width: 60%;
}

.btn-google:hover {
  color: #3b659c;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(174, 177, 194, 0.6);
  background: linear-gradient(180deg, #f5f6fa 0%, #d1d3e0 100%);
}

.btn-google img,
.btn-apple img {
  width: 20px;
  height: 20px;
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
  font-size: 18px;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: #4c80c2;
}

.alert-error {
  background-color: #ffe2e2;
  border: 1px solid #be2f2f;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
}

.alert-error.show {
  display: flex;
}

.alert-error img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.alert-error-text {
  color: #be2f2f;
  font-size: 18px;
  line-height: 23px;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

input.error {
  border-color: #be2f2f !important;
}

@media screen and (max-width: 1199px) {
  .login-container {
    margin: 60px auto;
  }

  .login-form-section {
    padding: 50px 40px;
  }

  .welcome-text {
    font-size: 24px;
    line-height: 48px;
  }

  .login-title {
    font-size: 42px;
  }

  .btn-signin {
    width: 100%;
    max-width: 380px;
  }
}

@media screen and (max-width: 991px) {
  .login-container {
    margin: 40px auto;
  }

  .login-image {
    border-radius: 30px !important;
    padding: 40px 30px !important;
    min-height: 400px;
    display: none !important;
  }

  .welcome-text {
    text-align: center !important;
  }

  .login-title {
    text-align: center !important;
  }

  .login-form-section {
    border-radius: 30px !important;
  }

  .login-image h2 {
    font-size: 28px !important;
  }

  .login-image p:first-of-type {
    font-size: 22px !important;
    line-height: 32px !important;
    margin-bottom: 30px !important;
  }

  .login-image p:last-of-type {
    font-size: 15px !important;
    line-height: 24px !important;
    margin-bottom: 40px !important;
  }

  .login-image .d-flex {
    gap: 30px !important;
  }

  .login-form-section {
    padding: 40px 35px;
  }

  .welcome-text {
    font-size: 22px;
    line-height: 42px;
  }

  .login-title {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .form-label {
    font-size: 16px;
  }

  .form-control-custom {
    font-size: 15px;
    padding: 20px 10px;
  }

  .btn-signin {
    width: 100%;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .login-container {
    margin: 30px 15px;
  }

  .login-image {
    padding: 35px 25px !important;
    min-height: 380px;
  }

  .login-image h2 {
    font-size: 26px !important;
  }

  .login-image p:first-of-type {
    font-size: 20px !important;
  }

  .login-form-section {
    padding: 35px 25px;
  }

  .welcome-text {
    font-size: 20px;
    line-height: 36px;
  }

  .login-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 575px) {
  .login-container {
    margin: 50px 10px;
  }

  .login-image {
    padding: 30px 20px !important;
    min-height: 350px;
  }

  .login-image h2 {
    font-size: 24px !important;
  }

  .login-image p:first-of-type {
    font-size: 18px !important;
    line-height: 28px !important;
    margin-bottom: 10px !important;
  }

  .login-image p:last-of-type {
    font-size: 14px !important;
    line-height: 22px !important;
    margin-bottom: 15px !important;
  }

  .login-image .d-flex {
    gap: 20px !important;
  }

  .login-image .d-flex > div div {
    width: 50px !important;
    height: 50px !important;
  }

  .login-image .d-flex > div img {
    width: 28px !important;
    height: 28px !important;
  }

  .login-image .d-flex > div p {
    font-size: 12px !important;
  }

  .login-form-section {
    padding: 30px 20px;
  }

  .welcome-text {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 5px;
  }

  .login-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .form-label {
    font-size: 15px;
  }

  .form-control-custom {
    font-size: 14px;
    padding: 18px 10px;
  }

  .btn-signin {
    font-size: 15px;
    padding: 12px 10px;
  }

  .social-login-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .btn-google,
  .btn-apple {
    max-width: 100%;
    width: 100%;
  }

  .divider {
    margin: 12px 0;
    font-size: 13px;
  }

  .forgot-password {
    font-size: 13px;
  }
}

@media screen and (max-width: 414px) {
  .login-image {
    display: none !important;
  }

  .welcome-text {
    text-align: center !important;
  }

  .login-title {
    text-align: center !important;
  }

  .btn-google {
    width: 70%;
  }

  .no-acc {
    font-size: 12px !important;
  }

  .login-container {
    margin-top: 80px !important;
  }
}

@media screen and (max-width: 400px) {
  .login-container {
    margin: 15px 8px;
  }

  .login-image {
    padding: 25px 15px !important;
    min-height: 320px;
  }

  .login-image h2 {
    font-size: 22px !important;
    margin-bottom: 12px !important;
  }

  .login-image p:first-of-type {
    font-size: 16px !important;
    line-height: 26px !important;
    margin-bottom: 20px !important;
  }

  .login-image p:last-of-type {
    font-size: 13px !important;
    line-height: 20px !important;
    margin-bottom: 30px !important;
  }

  .login-image .d-flex {
    gap: 15px !important;
  }

  .login-image .d-flex > div div {
    width: 45px !important;
    height: 45px !important;
  }

  .login-image .d-flex > div img {
    width: 24px !important;
    height: 24px !important;
  }

  .login-image .d-flex > div p {
    font-size: 11px !important;
  }

  .login-form-section {
    padding: 25px 15px;
  }

  .welcome-text {
    font-size: 16px;
    line-height: 28px;
  }

  .login-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .form-label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .form-control-custom {
    font-size: 13px;
    padding: 16px 10px;
  }

  .btn-signin {
    font-size: 14px;
    padding: 10px 8px;
  }

  .btn-google {
    font-size: 13px;
    padding: 10px 15px;
  }

  .divider {
    font-size: 12px;
  }

  .password-toggle {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 360px) {
  .login-form-section {
    padding: 25px 5px;
  }

  .btn-signin {
    width: 100%;
  }

  .btn-google {
    width: 80%;
  }

  .no-pad {
    padding: 0px 0px !important;
  }
}

/* ========= LOGIN CLIENT ============ */

/* ========= REGISTER CLIENT ============ */

#margin-daftar {
  margin-top: 70px !important;
  padding-top: 0 !important;
  background-color: #f1f8fd !important;
}

.daftar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.daftar-cards {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 30px;
  max-width: 1100px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.daftar-right {
  background: linear-gradient(135deg, #396092 0%, #4473af 50%, #484c71 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 40px;
}

.daftar-right-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

.daftar-right-desc h2 {
  font-weight: 600;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 20px;
}

.daftar-right-desc h4 {
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.daftar-right-desc p {
  font-weight: 400 !important;
  font-size: 13px;
  color: #f1f8fd;
  width: 75%;
  margin-bottom: 40px;
}

.daftar-right-desc img {
  width: 80px;
  margin-bottom: 20px;
}

.daftar-right-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Roboto", sans-serif;
  gap: 30px;
}

.daftar-right-logo-item img {
  width: 50px;
  height: 50px;
}

.daftar-right-logo-item p {
  color: #ffffff;
  font-size: 13px;
  margin-top: 10px;
}

.form-section {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  padding-right: 50px;
}

.form-title p {
  font-size: 22px;
  font-family: "Roboto", sans-serif;
}

.form-title p span {
  text-transform: uppercase;
  color: #77b4ed;
  font-size: 22px !important;
  font-weight: 600;
}

.form-title h1 {
  color: #4473af;
  margin-top: -15px;
}

.form-item {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  width: 100%;
}

#password-wrapper input {
  border: none !important;
  outline: none !important;
  width: 100%;
  font-size: 14px;
}

#password-wrapper i {
  color: #b0b0b0;
}

#togglePassword {
  position: absolute;
  right: 10px;
  cursor: pointer;
  color: #6c757d;
}

.form-item label {
  color: #495057;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 26px;
  font-family: "Roboto", sans-serif;
}

.form-item input {
  border-radius: 8px;
  border: 1px solid #ced4da;
  font-size: 16px;
  padding: 22px 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
}

.form-item input::placeholder {
  color: #b0b0b0;
  font-family: "Roboto", sans-serif;
}

.form-items input[type="password"]::placeholder {
  color: #b0b0b0;
  font-family: "Roboto", sans-serif;
}

.nama-lengkap {
  margin-bottom: -15px !important;
}

.button-alls {
  padding-left: 20px;
  padding-right: 20px;
}

.btn-daftar {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 30px;
  font-size: 16px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(180deg, #4c80c2 0%, #345d8f 100%);
  box-shadow: 0 4px 6px rgba(52, 93, 143, 0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-weight: 600;
  border: none;
}

.btn-daftar:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(52, 93, 143, 0.5);
  background: linear-gradient(180deg, #5b8dce 0%, #345d8f 100%);
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #888;
  margin: 24px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.divider:not(:empty)::before {
  margin-right: 0.75em;
}

.divider:not(:empty)::after {
  margin-left: 0.75em;
}

.divider span {
  font-size: 14px;
}

.sign-in-lain {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 10px;
}

.btn-google {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  color: #476c8e;
  background: linear-gradient(180deg, #ebecf5 0%, #d1d3e0 100%);
  border: 1px solid #4c80c2;
  box-shadow: 0 4px 6px rgba(174, 177, 194, 0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-weight: 600;
  border: 1px solid #d1d3e0;
  width: 60%;
}

.btn-google:hover {
  color: #3b659c;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(174, 177, 194, 0.6);
  background: linear-gradient(180deg, #f5f6fa 0%, #d1d3e0 100%);
}

.btn-google img {
  width: 20px;
  height: 20px;
}

.login-link {
  color: #4c80c2;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease;
}

.login-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

.alert-custom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fdeaea;
  color: #b71c1c;
  border: 1px solid #f5c2c7;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  margin: 10px 0 15px 0;
  width: 100%;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.icon-alert {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

@media screen and (max-width: 1141px) {
  #margin-daftar {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media screen and (max-width: 991px) {
  .daftar-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-title {
    text-align: center !important;
  }

  .daftar-right {
    display: none;
  }

  .form-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .button-alls {
    padding-left: 5px;
    padding-right: 5px;
  }

  .daftar-right-desc p {
    width: 90%;
  }
}

@media screen and (max-width: 783px) {
  .daftar-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .daftar-right {
    padding: 20px 40px;
  }

  .daftar-right-desc h2 {
    font-size: 28px;
  }

  .daftar-right-desc h4 {
    font-size: 18px;
  }

  .daftar-right-desc p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 558px) {
  .daftar-right-desc p {
    width: 100%;
    margin-bottom: 30px;
  }

  .daftar-right-logo-item p {
    font-size: 12px;
  }

  .form-section {
    padding-left: 0px;
  }
}

@media screen and (max-width: 450px) {
  #margin-daftar {
    padding-right: 10px;
    padding-left: 10px;
  }

  .sign-in-lain {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 414px) {
  .daftar-right {
    display: none !important;
  }

  .form-title {
    text-align: center !important;
  }

  #margin-daftar {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 387px) {
  .daftar-right {
    padding: 20px 10px;
  }

  .daftar-cards {
    padding: 20px 10px;
  }

  .daftar-right-desc img {
    width: 50px;
  }

  .daftar-right-desc h2 {
    font-size: 24px;
  }

  .daftar-right-desc h4 {
    font-size: 16px;
  }

  .daftar-right-desc p {
    font-size: 12px;
  }

  .daftar-right-logo-item img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 380px) {
  .form-title p {
    font-size: 20px !important;
  }

  .form-title p span {
    font-size: 20px !important;
  }

  .form-title h1 {
    font-size: 24px !important;
  }

  .form-item label {
    font-size: 12px !important;
  }

  .form-item input {
    font-size: 12px !important;
  }

  .form-item i {
    font-size: 12px !important;
  }

  .form-item input::placeholder {
    font-size: 12px !important;
  }

  .form-items {
    font-size: 12px !important;
  }

  .form-items input::placeholder {
    font-size: 12px !important;
  }

  .button-alls button {
    font-size: 12px !important;
    width: 70% !important;
  }

  .button-alls .divider span {
    font-size: 12px !important;
  }

  #have-acc {
    font-size: 12px !important;
  }

  .daftar-form {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ========= REGISTER CLIENT ============ */

/* ========= LUPA PASS CLIENT ============ */

.lupa-password-section {
  background-color: #f1f8fd !important;
  display: flex;
  align-items: center;
  margin-top: 0 !important;
}

.lupa-password-wrapper {
  margin-top: 100px;
  padding: 0 !important;
  margin-bottom: 30px;
  height: 90vh;
}

.lupa-password-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 50px 30px;
  position: relative;
}

.lupa-password-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  border-radius: 24px;
  background-color: #fff;
  padding: 50px;
  width: 100%;
}

/* --- Typography --- */
.card-title {
  font-size: 24px !important;
  font-weight: 600 !important;
}

.card-desc {
  font-size: 12px !important;
  text-align: center;
  font-weight: 500 !important;
}

/* --- Form --- */
#forget-pass-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  position: relative;
  width: 100%;
}

#forget-pass-form label {
  font-size: 14px !important;
  font-weight: 600 !important;
  position: absolute;
  left: 10px;
  top: 0;
  font-family: "Roboto", sans-serif;
}

#forget-pass-form input {
  height: 40px !important;
  font-size: 14px !important;
  padding: 10px !important;
  border: 1px solid #ccc !important;
  border-radius: 5px !important;
  margin-top: 30px;
  font-family: "Roboto", sans-serif;
  width: 100%;
  font-weight: 500;
}

#forget-pass-form input::placeholder {
  font-weight: 400 !important;
}

/* --- Button --- */
.btn-forget {
  margin-top: 40px !important;
  background-color: #4c80c2 !important;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  width: 55%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 6px 0 #3b68a2, 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-forget:hover {
  background-color: #558ed0;
  box-shadow: 0 8px 0 #3b68a2, 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.btn-forget:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 #3b68a2, 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lupa-password-desc {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  border-radius: 24px;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lupa-password-desc img {
  width: 150px;
}

.lupa-password-desc h2 {
  font-family: Roboto;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
  margin-top: 20px;
  color: #1b2d44;
}

.lupa-password-desc p {
  color: #000000;
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}

/* --- Alert Styling (baru seperti gambar kedua) --- */
.alert-container {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}

.alert-custom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fdeaea;
  color: #b71c1c;
  border: 1px solid #f5c2c7;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  margin: 10px 0 15px 0;
  width: 100%;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.icon-alert {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

/* --- Back link --- */
.back-page {
  display: flex;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-page ion-icon {
  font-size: 18px;
  margin-right: 5px;
}

.back-page:hover {
  color: #4c80c2;
}

@media screen and (max-width: 1199px) {
  .lupa-image {
    position: absolute;
    right: -130px;
    top: 55%;
  }

  .alert-custom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #fdeaea;
    color: #b71c1c;
    border: 1px solid #f5c2c7;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 20px;
    margin: 10px 0 15px 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
  }

  .btn-forget {
    width: 70%;
  }
}

/* --- Responsive --- */
@media screen and (max-width: 991px) {
  .lupa-password-card {
    position: relative;
    padding: 50px;
    height: 100%;
    width: 100%;
  }

  .lupa-password-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 50px 30px;
    position: relative;
  }

  .lupa-password-wrapper {
    margin-top: 100px;
    padding: 0 !important;
    margin-bottom: 30px;
    height: 130vh;
  }
}

@media screen and (max-width: 450px) {
  .lupa-password-card {
    padding: 30px;
  }

  .card-title {
    font-size: 20px !important;
  }

  .lupa-password-row {
    padding: 50px 10px;
  }
}

@media screen and (max-width: 414px) {
  .lupa-password-section {
    margin-bottom: 200px !important;
  }

  #margin-hero {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 381px) {
  .alert-custom {
    padding: 10px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-forget {
    width: 90%;
  }
}

/* ========= LUPA PASS CLIENT ============ */

/* ========= SUKSES LUPA PASS CLIENT ============ */
.lp-success-section {
  background-color: #f1f8fd;
  display: flex;
  align-items: center;
  margin-top: 0 !important;
}

.lp-success-wrapper {
  margin-top: 100px;
  padding: 0 !important;
  margin-bottom: 30px;
  height: 90vh;
}

.lp-success-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 50px 30px;
}

.lp-success-card {
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lp-success-title {
  font-size: 24px;
  font-weight: 600;
}

.lp-success-card-desc {
  display: flex;
  justify-content: center;
  width: 80%;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.lp-success-email-desc {
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

/* ================= IMAGE ================= */

.lp-success-img-fluid {
  width: 80px;
  margin-top: -30px;
  margin-bottom: 20px;
}

.lp-success-img-check {
  margin-top: 10px;
}

/* ================= FORM ================= */

.lp-success-form-group {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-success-form-group input {
  height: 40px;
  font-size: 14px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #edf2f9;
  width: 100%;
}

.lp-success-form-group input::placeholder {
  font-size: 12px;
  font-weight: 400;
}

.lp-success-btn-forget {
  margin-top: 40px;
  width: 55%;
  background-color: #4c80c2;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-family: Roboto;
  cursor: pointer;
  box-shadow: 0 6px 0 #3b68a2, 0 8px 20px rgba(0, 0, 0, 0.3);
  padding: 10px;
  transition: all 0.2s ease;
}

.lp-success-btn-forget:hover {
  background-color: #558ed0;
  box-shadow: 0 8px 0 #3b68a2, 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.lp-success-btn-forget:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 #3b68a2, 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ================= BACK LINK ================= */

.lp-success-back-page {
  margin-top: 40px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
}

.lp-success-back-page ion-icon {
  font-size: 18px;
  margin-right: 5px;
}

.lp-success-back-page:hover {
  color: #4c80c2;
}

/* ================= DESC ================= */

.lp-success-desc {
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lp-success-desc-img {
  width: 150px;
  margin-bottom: 10px;
}

.lp-success-desc h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
  color: #1b2d44;
}

.lp-success-desc p {
  font-size: 14px;
  font-weight: 400;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .lp-success-wrapper {
    height: 130vh;
  }

  .lp-success-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 550px) {
  .lp-success-form-group {
    width: 100%;
  }

  .lp-success-btn-forget,
  .lp-success-back-page {
    width: 100%;
  }

  .lp-success-card {
    padding: 30px;
  }

  .lp-success-title {
    font-size: 20px;
  }
  .lp-success-row {
    padding: 20px 10px;
  }
}
@media (max-width: 414px) {
  .lp-success-wrapper {
    margin-bottom: 100px;
  }
}

/* ========= SUKSES LUPA PASS CLIENT ============ */
