/* =====================================================
   SIGNUP PAGE
   Only Signup-specific styles
   Shared styles come from login.css
===================================================== */

/* ==========================================
   LEFT PANEL CONTENT
========================================== */

.academy-title {
    max-width: 420px;
}

.academy-subtitle {
    max-width: 470px;
}

/* ==========================================
   SIGNUP CARD
========================================== */

.auth-card {
    max-width: 700px;
}

.signup-top {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 40px;
}

.signup-top p {
    color: var(--text-light);
    font-size: 14px;
}

.signup-top a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.signup-top a:hover {
    text-decoration: underline;
}

/* ==========================================
   SIGNUP CONTENT
========================================== */

.signup-content {
    width: 100%;
}

.signup-form {
    margin-top: 35px;
}

/* ==========================================
   TERMS & CONDITIONS
========================================== */

.terms-group {
    margin: 44px 0 28px;
}

.terms-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.terms-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
    background: var(--color-bg);
}

.terms-group a {
    color: var(--color-primary);
    text-decoration: none;
}

.terms-group a:hover {
    text-decoration: underline;
}

/* ==========================================
   SIGNUP BUTTON
========================================== */

.signup-btn {
    width: 100%;
    margin-top: 5px;
    font-size: 22px;
}

/* ==========================================
   FORM SPACING
========================================== */

.signup-form .form-group:last-of-type {
    margin-bottom: 18px;
}
