﻿.signup-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
}

.signup-box {
    background-color: #1A1A1A;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.signup-header {
    text-align: center;
    margin-bottom: 30px;
}

    .signup-header h2 {
        color: #E60000;
        margin-bottom: 10px;
        font-size: 24px;
    }

    .signup-header p {
        color: #A6A6A6;
        font-size: 14px;
    }

.captcha-container {
    margin: 25px 0;
}

.captcha-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.captcha-text {
    background-color: #222;
    padding: 8px 15px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    letter-spacing: 3px;
    color: #E60000;
    user-select: none;
}

.btn-refresh {
    background: none;
    border: none;
    color: #A6A6A6;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    padding: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

    .btn-refresh:hover {
        color: #E60000;
        background-color: rgba(255, 255, 255, 0.1);
    }

.form-check {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 3px;
}

.form-check-label {
    font-size: 13px;
    color: #A6A6A6;
    line-height: 1.4;
}

    .form-check-label a {
        color: #E60000;
        text-decoration: none;
    }

        .form-check-label a:hover {
            text-decoration: underline;
        }

.login-link {
    text-align: center;
    margin-top: 20px;
}

    .login-link a:hover {
        text-decoration: underline;
    }

.no-photo-retro {
    background: #0d0d0d;
    border: 2px solid #2b2b2b;
    padding: 25px;
    border-radius: 6px;
    margin: 10px 0;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.2);
    animation: retro-glow 2.2s infinite alternate;
}
@keyframes retro-glow {
    from {
        box-shadow: 0 0 8px rgba(255,0,0,0.2);
    }

    to {
        box-shadow: 0 0 14px rgba(255,0,0,0.45);
    }
}
.privacy-content {
    color: #CFCFCF;
    line-height: 1.6;
    font-size: 14px;
    max-height: none;
}

    .privacy-content h3 {
        color: #E60000;
        margin-top: 22px;
        margin-bottom: 8px;
        font-size: 16px;
    }

    .privacy-content ul {
        margin-left: 18px;
    }

.privacy-meta {
    margin-top: 18px;
    color: #9a9a9a;
    font-size: 13px;
}
/* Responsive adjustments */
@media (max-width: 576px) {
    .signup-container {
        padding: 10px;
    }

    .signup-box {
        padding: 20px 15px;
    }
}
