/* css/style.css */


@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gilroy";
}

body {
  font-family: "Gilroy", sans-serif;
}

.gx-main-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
background-image: url("../assets/Icons/background-image.png");
}

.gx-container {
  padding: 10px;
}

.gx-login-card {
  background-color: white;
  border-radius: 32px;
  box-shadow: #00000040;
  padding: 40px 80px;
  width: 35vw;
}

.gx-password {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid 1px #cccccc;
  border-radius: 12px;
  padding: 10px 8px;
}

.gx-header {
  text-align: center;
  margin-bottom: 30px;
}

.gx-title {
  color: #2c3e50;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gx-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
}

.gx-sub {
  font-size: 30px;
  font-weight: 400;
  line-height: 32px;
  margin-top: 12px;
  letter-spacing: -1.5px;
  text-align: center;
}

.gx-get-started {
  font-weight: 600;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: -1.5px;
  text-align: center;
  text-transform: capitalize;
}

.gx_input_cont {
  border-radius: 12px;
  border-style: solid 1px #cccccc !important;
  background-color: #fff;
  border-width: 1px;
  align-items: center;
  display: flex;
  gap: 10px;
  width: 100%;
}

.gx-login-form {
  width: 100%;
}

.gx-form-group {
  margin: 10px 0px;
  position: relative;
}

.gx-label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.gx-welcome {
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  margin-top: 20px;
  color: #000000b2;
}

.astar {
  color: #ff5454;
}

.starrr {
  display: flex;
}

.gx-input {
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s;
  background: transparent;
}

.gx-input:focus {
  outline: none;
}

.gx-error-message {
  color: #e74c3c;
  font-size: 12px;
  display: block;
  margin-top: 5px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gx-input:invalid:focus + .gx-error-message {
  opacity: 1;
}

.gx-target-password {
  text-align: end;
}

.gx-target-label {
  color: #000000 !important;
  cursor: pointer;
  font-size: 14px !important;
  font-weight: bold !important;
  text-decoration: none;
}

.gx-button {
  text-align: center;
  color: #fff;
  cursor: pointer;
  background-color: #000;
  border-radius: 40px;
  width: 300px;
  height: 50px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 900;
  border: none;
}

.gx-button-continue {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.gx-signup-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  color: #222222;
}

.gx-link {
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  color: #222222;
  text-decoration: none;
}

/* Password toggle styles */
.password-toggle {
  cursor: pointer;
  user-select: none;
}

/* Form validation styles */
.gx-form-group.error .gx-error-message {
  opacity: 1;
}

.gx-input-error {
  border: none !important;
  outline: none !important;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .gx-login-card {
    padding: 30px 20px;
    width: 90vw;
  }

  .gx-title {
    font-size: 28px;
    /* font-size: clamp(28px, 8vw, 105px); */
  }

  .gx-button {
    width: 100%;
  }
}

@media (min-width: 480px) and (max-width: 1024px) {
  .gx-login-card {
    padding: 30px 20px;
    width: 50vw;
  }

  .gx-title {
    font-size: 28px;
    /* font-size: clamp(28px, 8vw, 105px); */
  }

  .gx-button {
    width: 50%;
  }
  
}


  .input-wrapper {
        position: relative;
        flex: 1;
      }

      .placeholder-label {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        pointer-events: none;
        transition: all 0.3s;
        font-size: 16px;
        font-weight: 600;
      }

      .placeholder-label .asterisk {
        color: #CA0000;
        margin-left: 2px;
      }

      .gx-input:focus + .placeholder-label,
      .gx-input:not(:placeholder-shown) + .placeholder-label {
        opacity: 0;
      }

      .gx-input.no-placeholder::placeholder {
        color: transparent;
      }
