.titre {
    display: flex;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    padding-bottom: 2rem;
    margin: 0 auto;
    color: #1a202c;
}

.hr {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 60%;
    height: 0.2rem;
    background-color: #0083b0;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

body {
    background-color: rgb(188, 227, 227);
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: 40%;
    height: auto;
    padding: 2rem;
    gap: 1rem;
    background: linear-gradient(145deg, #e8f4f8, #d0e8f0);
    border: 2px solid #0083b0;
    border-radius: 1.5rem;
    box-shadow: 
        0 10px 25px rgba(0, 131, 176, 0.25),
        0 5px 10px rgba(0, 131, 176, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #1a202c;
}

.form *:not(.formSubmit):not(button):not([type="submit"]) {
    color: #1a202c !important;
}

.form button,
.form .formSubmit,
.form [type="submit"] {
    color: white !important;
}

.formInput {
    text-align: center;
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #0083b0;
    border-radius: 0.5rem;
    background-color: white;
    font-size: 1rem;
    color: #1a202c;
    transition: all 0.3s ease;
}

.formInput:focus {
    outline: none;
    border-color: #00b4db;
    box-shadow: 0 0 0 3px rgba(0, 180, 219, 0.2);
}

.formLabel {
    text-align: center;
    font-weight: 600;
    color: #1a202c;
}

.formSubmit {
    display: flex;
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    border-radius: 1rem;
    width: 9rem;
    height: 3rem;
    margin: 1rem auto 1rem auto;
    grid-column: span 2;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 
        0 6px 10px rgba(0, 0, 0, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.formSubmit:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 20px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #0083b0 0%, #00b4db 100%);
}

.formSubmit:active {
    transform: translateY(-1px);
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 768px) {

    .titre {
        text-align: center;
        font-size: 2.5rem;
        color: #1a202c;
    }

    .form {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        width: 85%;
        max-width: 350px;
        height: auto;
        padding: 1rem;
        gap: 0.8rem;
        background: linear-gradient(145deg, #e8f4f8, #d0e8f0);
        border: 2px solid #0083b0;
        border-radius: 1.5rem;
        box-shadow: 
            0 10px 25px rgba(0, 131, 176, 0.25),
            0 5px 10px rgba(0, 131, 176, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
        box-sizing: border-box;
    }

    .hr {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 80%;
        height: 0.1rem;
        background-color: #0083b0;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .formInput {
        width: 100%;
        max-width: 280px;
        padding: 0.5rem 0.6rem;
        font-size: 0.9rem;
        box-sizing: border-box;
    }

    .formLabel {
        font-size: 0.9rem;
    }

    .formSubmit {
        width: 6rem;
        height: 2.2rem;
        font-size: 0.85rem;
    }
}