/* sign-up.css */
@import url('login.css'); /* Reuse base styles */

/* Adjust card width for larger form */
.sign-in-card {
    max-width: 550px; /* Slightly wider than login for the grid */
    padding: 5px 40px;
    margin-top: -50px;
}

/* Grid for Name and Phone */
.grid-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .grid-fields {
        grid-template-columns: 1fr;
    }
}

/* Disclaimer text at bottom */
.disclaimer {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin-top: 25px;
    text-align: center;
    padding: 0 10px;
}

/* OTP Verification Styles */
.otp-label {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.otp-box {
    width: 45px !important;
    height: 55px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Resend Code */
.resend-code-text {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: -16px;
    margin-bottom: 10px;
}

.resend-code-link {
    color: #386DFF;
    text-decoration: none;
    font-weight: 500;
}

.resend-code-link:hover {
    color: #0FBBFF;
    text-decoration: underline;
}

/* Override input padding for confirmation password if needed */
.form-group input::placeholder {
    color: #444;
}

/* Onboarding Specifics */
.onboarding-card {
    max-width: 600px; /* Slightly wider for onboarding flow */
    height: 450px;
    align-content: center;
}

.onboarding-industry-card {
    max-width: 760px; /* Slightly wider for onboarding flow */
    height: 450px;
    align-content: center;
}

.progress-container {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(87.68deg, #0FBBFF 1.6%, #386DFF 35.93%, #B22DFF 66.88%, #FF258E 102.18%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.step-counter {
    font-size: 12px;
    color: #888;
    text-align: center;
}

.card-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px -40px; /* Extends to edges of card padding */
}

.onboarding-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.onboarding-desc {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Button Row for Cancel/Continue */
.button-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    width: 117px;
    height: 44px;
    angle: 0 deg;
    opacity: 1;
    top: 623px;
    left: 781px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    font-family: Outfit;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: -1%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
}

.btn-secondary:hover {
    color: #fff;
}

/* Adjusting the hero-button to fit in a row */
.button-row .hero-button {
    margin: 0;
    width: 140px;
}

@media screen and (max-width: 479px) {
  .onboarding-card {
    padding: 40px 40px;
  }
}