/* Styles pour la page de création de compte EDD */

.page-content h2 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.page-content > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Formulaire d'inscription */
#edd_register_form {
    max-width: 450px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
}

#edd_register_form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

#edd_register_form legend {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
}

/* Labels */
#edd_register_form label {
    display: block;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Champs de saisie */
#edd_register_form .edd-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fafbfc;
    box-sizing: border-box;
}

#edd_register_form .edd-input:focus {
    outline: none;
    border-color: #3498db;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

#edd_register_form .edd-input:hover {
    border-color: #bdc3c7;
}

/* Bouton d'inscription */
#edd_register_form .edd-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#edd_register_form .edd-submit:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

#edd_register_form .edd-submit:active {
    transform: translateY(0);
}

/* Lien de connexion en bas */
.page-content > p:last-child {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #7f8c8d;
}

.page-content > p:last-child a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-content > p:last-child a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    #edd_register_form {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .page-content h2 {
        font-size: 24px;
    }
    
    #edd_register_form legend {
        font-size: 20px;
    }
}