/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */

.container-signup-box-body {
  background: linear-gradient(to bottom right, #0a0f2c, #0f1e4a);
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-signup-box {
  display: flex;
  max-width: 1250px;
  background-color: #0e1629;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.signup-box {
  flex: 1;
  padding: 40px;
  background-color: #0e1629;
}

.signup-box h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
}

.login-text {
  color: #ccc;
  margin-bottom: 20px;
}

.login-text a {
  color: #36a1ff;
  text-decoration: none;
}

.container-signup-box-body input {
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  border: none;
  margin-bottom: 20px;
  background-color: #1c2b4a;
  color: white;
}

.formgroup {
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  width: 100%;
  margin-right: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

.btn {
  width: 100%;
  padding: 15px;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background-color: #0056cc;
}

.privacy-text {
  margin-top: 20px;
  font-size: 13px;
  color: #aaa;
}

.privacy-text a {
  color: #36a1ff;
  text-decoration: none;
}

.referral-code {
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

.promo-box {
  flex: 1;
  background-color: #0f1e4a;
  padding: 40px;
  text-align: center;
}

.promo-box h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.promo-box h2 span {
  color: #5fa9f6;
}

.promo-box p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #ccc;
}

.mockup-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


    /* .formgroup {
        margin-bottom: 15px;
        width: 300px;
    }
    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    } */
    .password-wrapper {
        position: relative; /* Container for absolute positioning */
        display: flex; /* Make input and icon align if needed */
        align-items: center; /* Vertically align them */
    }
    .password-wrapper input[type="password"],
    .password-wrapper input[type="text"] { /* Apply to both types */
        width: 100%;
        /* padding: 10px 40px 10px 10px; */
        /* border: 1px solid #ccc; */
        border-radius: 4px;
        box-sizing: border-box; /* Include padding in width */
    }
    .toggle-password {
        position: absolute;
        right: 10px; /* Position from the right edge of the wrapper */
        cursor: pointer;
        color: #555;
        font-size: 1.1em;
        margin-bottom: 12px;
        /* For older browsers or if flex isn't used on parent: */
        /* top: 50%;
        transform: translateY(-50%); */
    }
    .toggle-password:hover {
        color: #000;
    }
