﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #a855f7 0%, #f97316 50%, #ec4899 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.inscription-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #a855f7;
}

    .form-header h1 {
        background: linear-gradient(135deg, #a855f7, #f97316);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.5rem;
        font-size: 2.5rem;
        font-weight: 700;
    }

    .form-header p {
        color: #666;
    }

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    color: #333;
}

    .form-control:focus {
        border-color: #a855f7;
        box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
        background: white;
        outline: none;
    }

    .form-control::placeholder {
        color: #999;
    }

.btn-submit {
    background: linear-gradient(135deg, #a855f7, #f97316);
    border: none;
    color: white;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
        color: white;
    }

.required {
    color: #dc3545;
    font-weight: bold;
}

.text-danger {
    color: #dc3545 !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.text-muted {
    color: #6b7280 !important;
}

.form-text {
    color: #6c757d !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .inscription-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .form-header h1 {
        font-size: 2rem;
    }
}
