/* --- Reseller Portal Specific Styles --- */
:root {
    --reseller-bg: #0a0a0c;
    --reseller-card: #141417;
    --cyan-glow: #00FFFF;
    --cyan-dim: rgba(0, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
}

.reseller-body {
    background-color: var(--reseller-bg);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-card {
    background: var(--reseller-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 15px var(--cyan-dim);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.auth-card h2 {
    color: var(--cyan-glow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.reseller-input-group {
    margin-bottom: 15px;
    text-align: left;
}

.reseller-input {
    width: 100%;
    padding: 12px 15px;
    background: #0d0d10;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 0.95em;
    transition: 0.3s;
}

.reseller-input:focus {
    border-color: var(--cyan-glow);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.reseller-btn {
    width: 100%;
    padding: 14px;
    background: var(--cyan-glow);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.reseller-btn:hover {
    background: #00e6e6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.country-select {
    background: #0d0d10;
    color: white;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 8px;
    margin-right: 5px;
}

.req-item {
    transition: color 0.3s ease, text-shadow 0.3s ease;
    margin-bottom: 4px;
}