﻿/* ===================================================================== */
/* SGT AUTH PAGES - BRAND COLORS                                        */
/* ===================================================================== */

.sgt-auth-page {
    min-height: 100vh;
    background: #14092B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 80px 20px; /* Added bottom padding for footer */
    position: relative;
}

.sgt-auth-box {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.sgt-auth-logo {
    width: 280px;
    max-width: 90%;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.6));
}

.sgt-auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sgt-auth-field {
    display: flex;
    flex-direction: column;
}

.sgt-auth-input {
    width: 100%;
    padding: 16px 20px;
    background: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #000000;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .sgt-auth-input::placeholder {
        color: #999999;
    }

    .sgt-auth-input:focus {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    }

.sgt-auth-forgot {
    text-align: left;
    margin-top: -10px;
}

.sgt-auth-link-forgot {
    color: #FF00FF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .sgt-auth-link-forgot:hover {
        text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
    }

.sgt-auth-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(180deg, #990099, #FF00FF);
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    margin-top: 10px;
}

    .sgt-auth-btn:hover {
        box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
        transform: translateY(-2px);
    }

    .sgt-auth-btn:active {
        transform: translateY(0);
    }

.sgt-auth-signup {
    margin-top: 30px;
    color: #FFFFFF;
    font-size: 14px;
}

.sgt-auth-link-signup {
    color: #FF00FF;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .sgt-auth-link-signup:hover {
        text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
    }

.sgt-auth-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    background: #14092B;
}

    .sgt-auth-footer p {
        margin: 5px 0;
    }

.sgt-auth-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    border-radius: 8px;
    padding: 15px;
    color: #ff6666;
    font-size: 14px;
    margin-bottom: 20px;
}

.sgt-auth-validation {
    color: #ff6666;
    font-size: 12px;
    margin-top: 5px;
    text-align: left;
}

/* Multi-Step Specific Styles */
.sgt-auth-step-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.sgt-auth-step-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.sgt-auth-back {
    margin-top: 20px;
}

.sgt-auth-link-back {
    color: #FF00FF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .sgt-auth-link-back:hover {
        text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
    }

/* Progress Dots */
.sgt-auth-progress {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.sgt-progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

    .sgt-progress-dot.active {
        background: #FF00FF;
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
    }

    .sgt-progress-dot.completed {
        background: #00FF00;
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
    }

/* Password Field with Toggle */
.sgt-password-field {
    position: relative;
}

.sgt-password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* reCAPTCHA Container */
.sgt-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

/* Success Page Styles */
.sgt-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(180deg, #00FF00, #00CC00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #FFFFFF;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
}

.sgt-success-email {
    color: #00FF00;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

.sgt-auth-btn-block {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(180deg, #990099, #FF00FF);
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    margin-top: 10px;
}

    .sgt-auth-btn-block:hover {
        box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
        transform: translateY(-2px);
        color: #FFFFFF;
    }

/* Responsive */
@media (max-width: 480px) {
    .sgt-auth-logo {
        width: 220px;
    }

    .sgt-auth-input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .sgt-auth-btn {
        padding: 16px;
        font-size: 16px;
    }

    .sgt-auth-step-title {
        font-size: 24px;
    }
}
