/*
==========================================================
EDID STUDIO PLATFORM
Page Connexion Collaborateur
Version corrigée responsive
==========================================================
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    min-height:100%;
    font-family:Poppins, Arial, sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

/* PAGE */

.edid-login-page{
    position:relative;
    min-height:100vh;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    padding:40px 20px;
}

/* IMAGE DE FOND */

.edid-background{
    position:fixed;
    inset:0;
    background:url("https://soleil-du-sud-record.fr/wp-content/uploads/sites/11/2025/04/espaceclient.png") center/cover no-repeat;
    z-index:1;
    transform:scale(1.06);
}

/* VOILE */

.edid-overlay{
    position:fixed;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,0,0,.88),
        rgba(0,0,0,.55),
        rgba(0,0,0,.92)
    );
    backdrop-filter:blur(5px);
    z-index:2;
}

/* CONTAINER */

.edid-login-container{
    position:relative;
    z-index:10;
    width:100%;
    max-width:1400px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* COLONNE GAUCHE */

.edid-left{
    flex:1;
}

.edid-brand{
    max-width:620px;
}

.edid-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    margin-bottom:25px;
}

.edid-brand h1{
    font-size:64px;
    line-height:1;
    font-weight:800;
    margin-bottom:25px;
}

.edid-subtitle{
    font-size:26px;
    color:#f7b500;
    font-weight:600;
    margin-bottom:25px;
}

.edid-separator{
    width:120px;
    height:4px;
    background:#f7b500;
    border-radius:30px;
    margin:30px 0;
}

.edid-description{
    font-size:20px;
    line-height:1.7;
    color:#e5e7eb;
}

/* COLONNE DROITE */

.edid-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.edid-login-card{
    width:100%;
    max-width:560px;
    padding:55px;
    border-radius:32px;
    background:rgba(18,18,18,.62);
    backdrop-filter:blur(26px);
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 25px 80px rgba(0,0,0,.55);
}

.edid-logo-circle{
    width:105px;
    height:105px;
    margin:0 auto 32px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:46px;
    background:linear-gradient(135deg,#f7b500,#ff7b00);
    box-shadow:0 0 40px rgba(247,181,0,.50);
}

.edid-login-card h2{
    text-align:center;
    font-size:34px;
    margin-bottom:15px;
}

.edid-login-text{
    text-align:center;
    color:#d1d5db;
    font-size:16px;
    line-height:1.7;
    margin-bottom:35px;
}

/* FORMULAIRE */

.edid-input{
    margin-bottom:22px;
}

.edid-input label{
    display:block;
    margin-bottom:10px;
    color:#f7b500;
    font-weight:600;
    font-size:14px;
}

.edid-input input{
    width:100%;
    height:56px;
    padding:0 18px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:16px;
}

.edid-input input:focus{
    outline:none;
    border-color:#f7b500;
    box-shadow:0 0 22px rgba(247,181,0,.22);
}

.edid-login-button{
    width:100%;
    height:60px;
    border:none;
    border-radius:16px;
    cursor:pointer;
    font-size:17px;
    font-weight:700;
    color:#111;
    background:linear-gradient(135deg,#f7b500,#ff8a00);
}

.edid-links{
    margin-top:25px;
    text-align:center;
}

.edid-links a{
    color:#fff;
    text-decoration:none;
}

.edid-links a:hover{
    color:#f7b500;
}

.edid-security{
    margin-top:28px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.10);
    text-align:center;
    font-size:13px;
    color:#d1d5db;
}

/* FOOTER */

.edid-footer{
    position:absolute;
    bottom:25px;
    left:0;
    width:100%;
    z-index:20;
    text-align:center;
    font-size:12px;
    color:#ddd;
}

/* TABLETTE */

@media(max-width:1024px){

    .edid-login-container{
        flex-direction:column;
        text-align:center;
        gap:35px;
    }

    .edid-brand{
        margin:auto;
    }

    .edid-separator{
        margin:25px auto;
    }

    .edid-brand h1{
        font-size:48px;
    }

    .edid-description{
        font-size:17px;
    }

    .edid-login-card{
        max-width:620px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .edid-login-page{
        align-items:flex-start;
        overflow-y:auto;
        padding:25px 15px 80px;
    }

    .edid-login-container{
        width:100%;
        gap:25px;
    }

    .edid-brand h1{
        font-size:34px;
    }

    .edid-subtitle{
        font-size:19px;
    }

    .edid-description{
        font-size:15px;
    }

    .edid-login-card{
        padding:28px;
        border-radius:24px;
    }

    .edid-logo-circle{
        width:82px;
        height:82px;
        font-size:34px;
    }

    .edid-login-card h2{
        font-size:27px;
    }

    .edid-footer{
        position:relative;
        bottom:auto;
        margin-top:25px;
    }
}

/* PETIT MOBILE */

@media(max-width:420px){

    .edid-brand h1{
        font-size:29px;
    }

    .edid-login-card{
        padding:22px;
    }

    .edid-login-button{
        height:55px;
        font-size:15px;
    }
}