/* --------------------------------------------------------------------------
                          CONNEXION/INSCRIPTION
-------------------------------------------------------------------------- */
.background-log {
    position: relative;
    background-image: url("../../media/background-log-dn8yfdK.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Décors */
.background-log::before,
.background-log::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.background-log::before {
    width: 320px;
    height: 320px;
    top: 12%;
    left: 10%;
}

.background-log::after {
    width: 220px;
    height: 220px;
    bottom: 15%;
    right: 12%;
}

/* --- GLASS CARD --- */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1;
}

.glass-card::before {
    pointer-events: none;
}

.login-title {
    font-size: 4rem;
}

.login-title::after {
    content: "";
    display: block;
    width: 85px;
    height: 3px;
    background-color: #fff;
    margin: 5px auto 0;
    border-radius: 2px;
}
/*
.btn-google {
    background: white;
    border: none;
    color: #004680;
    border-radius: 4px;
    padding: 10px 28px;
    transition: transform 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-google:hover {
    background-color: #002d53;
    color: white;
    transform: scale(1.05);
}

.btn-google img {
    height: 20px;
    vertical-align: middle;
}*/

/* --- Form wrapper --- */
.form-wrapper {
    padding-left: 3rem;
    padding-right: 3rem;
}

/* --- Glass input underline --- */
.glass-field {
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

/* Icônes à gauche */
.glass-field .log-i {
    position: absolute;
    left: 10px;
    z-index: 2;
    color: #ffffff;
    font-size: 18px;
    opacity: 0.9;
    line-height: 1;
}

/* Input */
.glass-field input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    color: #fff;
    font-size: 18px;
    z-index: 1;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* Icône œil à droite */
.password-div {
    position: relative;
}

.password-div .js-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;
    pointer-events: auto;
}

/* Placeholder */
.glass-field input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}


@media (max-width: 768px) {
    .glass-field input {
        padding-left: 2.5rem;
    }
}

button,
a {
    position: relative;
    z-index: 5;
}

a {
    display: inline-block;
    cursor: pointer;
}
