﻿/* connexion.css */



/* Centrage du contenu principal */
.grid-container, .container-large {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Formulaire stylé */
.registration-form {
    background: rgba(255,255,255,0.98);
    border-radius: 20px;
    box-shadow: 0 8px 40px 8px rgba(80,80,110,0.08);
    padding: 40px 30px 32px 30px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    animation: fadeInDown 1s;
    z-index: 2;
}

@keyframes fadeInDown {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.registration-form h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1c2244;
    margin-bottom: 26px;
    text-align: center;
}

.registration-form .form-group {
    margin-bottom: 21px;
}

.registration-form label {
    font-weight: 600;
    color: #414264;
    margin-bottom: 7px;
    display: block;
}

.registration-form .form-control {
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #d1d3e0;
    padding: 12px 14px;
    font-size: 1.05rem;
}

.registration-form .btn {
    width: 100%;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 0;
    background: #1a8cff;
    border: none;
    box-shadow: 0 2px 6px rgba(30,130,240,0.08);
    transition: background 0.17s;
}

    .registration-form .btn:hover {
        background: #176dcc;
    }

.registration-form .alert {
    margin-bottom: 16px;
    font-size: 1rem;
}

.registration-form a {
    color: #1a8cff;
    text-decoration: underline;
    font-size: 0.99rem;
    font-weight: 500;
}

    .registration-form a:hover {
        text-decoration: none;
    }

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: none !important;
    min-height: 100vh;
}

/* Pour garantir que le contenu passe bien au-dessus de la vidéo */
body, html {
    height: 100%;
}
