/* Style spécifique pour la page contact */
.contact-hero {
    min-height: 80vh;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

/* On ajoute des notes de musique floues en arrière-plan pour le style */
.contact-hero::after {
    content: "\f001"; /* FontAwesome Music note */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -50px;
    bottom: -50px;
    font-size: 300px;
    color: rgba(255, 77, 77, 0.03);
    pointer-events: none;
}

/* La carte de contact calquée sur le style inscription */
.contact-music-card {
    background: rgba(18, 18, 18, 0.95) !important;
    border: 1px solid #ff4d4d;
    border-radius: 15px;
    padding: 35px;
    width: 100%;
    max-width: 750px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8) !important;
}
.label-rock {
    color: #ff4d4d !important;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.input-rock {
    background: #111 !important;
    border: 1px solid #222 !important;
    color: #eee !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    transition: 0.3s all ease;
}

.input-rock:focus {
    border-color: #ff4d4d !important;
    background: #151515 !important;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.1) !important;
}

.btn-rock-contact {
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
    cursor: pointer;
}

.btn-rock-contact:hover {
    background: #e60000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.4);
}

.tracking-wider { letter-spacing: 3px; }

.page-contact .auth-wrapper {
    min-height: 100vh;
    padding-top: 130px; /* Espace pour le header */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

