/* Enhanced Registration Modal Styling */
.modal-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.modal-description {
    color: #ccc;
    line-height: 1.6;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.modal-description p {
    margin-bottom: 12px;
    font-size: 14px;
}

.modal-description p:last-child {
    margin-bottom: 0;
}

.modal-form-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-box.register .modal-box {
    max-width: 800px;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-description {
        padding: 15px;
    }
    
    .modal-box.register .modal-box {
        width: 95vw;
        max-height: 95vh;
    }
}

@media (max-width: 480px) {
    .modal-content-wrapper {
        gap: 15px;
    }
    
    .modal-description {
        padding: 12px;
        font-size: 13px;
    }
    
    .modal-box.register .modal-box {
        width: 98vw;
        margin: 10px;
    }
}
