.forms-container {
    max-width: 900px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.auth-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.auth-card h1 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.auth-card p {
    color: #999999;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #5865F2;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 auto;
    transition: all 0.2s ease;
    font-family: inherit;
    border-radius: 6px;
    cursor: pointer;
    color: #ffffff;
}

.discord-btn:hover {
    background: #4752C4;
}

.discord-btn svg {
    width: 24px;
    height: 24px;
}

.modern-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.form-header-modern {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header-modern h1 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.form-subtitle {
    color: #999999;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section-modern h2 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-modern label {
    color: #e5e5e5;
    font-size: 0.9375rem;
    font-weight: 500;
}

.field-hint {
    color: #999999;
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
}

.required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 1rem;
    color: #666666;
    font-size: 0.9375rem;
    pointer-events: none;
}

.input-wrapper input {
    padding-left: 2.5rem;
}

.form-group-modern input[type="text"],
.form-group-modern textarea,
.form-group-modern select {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: #e5e5e5;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group-modern input[type="text"]:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: #242424;
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-modern input[type="text"]::placeholder,
.form-group-modern textarea::placeholder {
    color: #666666;
}

.radio-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.radio-option input[type="radio"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ffffff;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-content {
    color: #ffffff;
}

.radio-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.radio-title {
    color: #e5e5e5;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
}

.radio-description {
    color: #999999;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.file-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.file-upload-area.dragover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.file-upload-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #999999;
}

.file-upload-prompt svg {
    color: #666666;
}

.file-upload-prompt p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #e5e5e5;
    margin: 0;
}

.file-upload-prompt span {
    font-size: 0.8125rem;
    color: #999999;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.file-icon {
    color: #ffffff;
    flex-shrink: 0;
}

.file-details {
    flex: 1;
    min-width: 0;
}

.file-name {
    color: #e5e5e5;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    color: #999999;
    font-size: 0.8125rem;
}

.file-remove {
    background: none;
    border: none;
    color: #999999;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
    font-family: inherit;
}

.file-remove:hover {
    color: #ef4444;
}

.roblox-verification {
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: 6px;
}

.verification-success {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 1rem;
    border-radius: 6px;
}

.verification-error {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 1rem;
    border-radius: 6px;
    color: #e5e5e5;
    line-height: 1.5;
}

.roblox-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.5);
    flex-shrink: 0;
}

.verification-info {
    flex: 1;
    min-width: 0;
}

.verification-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.verification-name span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.verification-id {
    color: #999999;
    font-size: 0.8125rem;
}

.checkmark {
    flex-shrink: 0;
}

.ban-status {
    color: #ef4444;
    font-weight: 600;
    margin-top: 0.375rem;
}

.form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-notice {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #e5e5e5;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.btn-submit {
    background: #ffffff;
    color: #0a0a0a;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    font-family: inherit;
}

.btn-submit:hover:not(:disabled) {
    background: #e5e5e5;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: transparent;
    color: #e5e5e5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.modal-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-content p {
    color: #999999;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .forms-container {
        margin-top: 80px;
        padding: 0 15px;
    }

    .modern-form-container {
        padding: 1.75rem 1.5rem;
    }

    .form-header-modern h1 {
        font-size: 1.625rem;
    }

    .form-subtitle {
        font-size: 0.875rem;
    }

    .form-section-modern h2 {
        font-size: 1.125rem;
    }

    .radio-option {
        padding: 0.875rem;
    }

    .radio-title {
        font-size: 0.875rem;
    }

    .radio-description {
        font-size: 0.75rem;
    }

    .file-upload-area {
        padding: 1.5rem 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-submit,
    .btn-secondary {
        width: 100%;
    }

    .auth-card {
        padding: 2.5rem 1.75rem;
    }

    .auth-card h1 {
        font-size: 1.625rem;
    }

    .auth-card p {
        font-size: 0.875rem;
    }

    .discord-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
        width: 100%;
    }

    .verification-success {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .verification-error {
        flex-direction: column;
        text-align: center;
        gap: 0.625rem;
        font-size: 0.875rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-content h3 {
        font-size: 1.25rem;
    }

    .modal-content p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .forms-container {
        margin-top: 70px;
        padding: 0 10px;
    }

    .modern-form-container {
        padding: 1.5rem 1.25rem;
        border-radius: 6px;
    }

    .form-header-modern {
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }

    .form-header-modern h1 {
        font-size: 1.375rem;
    }

    .form-subtitle {
        font-size: 0.8125rem;
    }

    .form-section-modern h2 {
        font-size: 1rem;
    }

    .form-group-modern label {
        font-size: 0.875rem;
    }

    .form-group-modern input[type="text"],
    .form-group-modern textarea,
    .form-group-modern select {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }

    .input-wrapper input {
        padding-left: 2.25rem;
    }

    .input-prefix {
        left: 0.875rem;
        font-size: 0.875rem;
    }

    .radio-option {
        padding: 0.75rem;
    }

    .radio-title {
        font-size: 0.8125rem;
    }

    .radio-description {
        font-size: 0.6875rem;
    }

    .file-upload-area {
        padding: 1.25rem 0.875rem;
    }

    .file-upload-prompt p {
        font-size: 0.875rem;
    }

    .file-upload-prompt span {
        font-size: 0.75rem;
    }

    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-card h1 {
        font-size: 1.5rem;
    }

    .discord-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn-submit {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
    }

    .btn-secondary {
        padding: 0.625rem 1.5rem;
        font-size: 0.9375rem;
    }

    .modal-content {
        padding: 1.75rem 1.25rem;
    }

    .modal-content h3 {
        font-size: 1.125rem;
    }

    .modal-content p {
        font-size: 0.8125rem;
    }

    .roblox-avatar {
        width: 50px;
        height: 50px;
    }

    .verification-name {
        font-size: 0.875rem;
    }

    .verification-id {
        font-size: 0.75rem;
    }
}