﻿/* MAIN REGISTER BOX — ATLAS STYLE */
.vs-register-box {
    background: #1b1b1b; /* Dark matte background */
    padding: 35px 45px; /* Big padding like Atlas */
    border-radius: 18px; /* Smooth rounded corners */
    box-shadow: 0 0 15px rgba(0,0,0,0.5), /* Outer soft shadow */
    inset 0 0 8px rgba(255,255,255,0.03); /* Subtle inner light */
    max-width: 900px; /* Wider Atlas style */
    margin: auto;
    border: 1px solid rgba(255,255,255,0.05); /* Light border */
}

/* FORM ROW IMPROVED */
.form-row {
    display: flex;
    gap: 25px;
    width: 100%;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
}

    /* LABEL */
    .form-group label {
        font-size: 15px;
        color: #dcdcdc;
        margin-bottom: 6px;
        font-weight: 600;
    }

/* INPUT BOX STYLE LIKE ATLAS */
.input-group,
.phone-wrapper {
    display: flex;
    align-items: center;
    background: #0e0e0e;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid #2a2a2a;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.45), 0 0 8px rgba(0,0,0,0.35);
}

    /* INPUT ELEMENT */
    .input-group input,
    .phone-wrapper input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        font-size: 16px;
    }

/* ICON STYLE */
.icon {
    font-size: 19px;
    color: #aaa;
    margin-right: 10px;
}

/* VERIFY BUTTON — ATLAS STYLE */
.verify-btn {
    background: #007bff;
    color: white;
    padding: 8px 20px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

    .verify-btn:hover {
        background: #0068d1;
    }

/* SUBMIT BUTTON - ATLAS STYLE */
.atlas-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #2d7ffe, #1b5ed9);
    color: white;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
    cursor: pointer;
}

    .atlas-submit:hover {
        background: linear-gradient(135deg, #3b8dff, #2569de);
    }

/* TERMS BOX */
.terms-box {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

    .terms-box label {
        margin-left: 10px;
        font-size: 14px;
    }
