/*
==========================================================
EDID STUDIO PLATFORM
Collaborator Premium UI
Version 4.0
Partie 1 / 4
==========================================================
*/

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

html,
body{

    width:100%;
    height:100%;

    font-family:
    "Poppins",
    Arial,
    sans-serif;

    background:#000;

}

/*=========================================================
PAGE
=========================================================*/

.edid-login-page{

    position:relative;

    min-height:100vh;

    width:100%;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

}

/*=========================================================
BACKGROUND
=========================================================*/

.edid-background{

    position:fixed;

    inset:0;

    background:
    url("https://soleil-du-sud-record.fr/wp-content/uploads/sites/11/2025/04/espaceclient.png")
    center center
    no-repeat;

    background-size:cover;

    animation:
    edidBackgroundZoom
    30s ease-in-out infinite alternate;

    z-index:1;

}
@keyframes edidBackgroundZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

/*=========================================================
OVERLAY
=========================================================*/

.edid-overlay{

    position:fixed;

    inset:0;

    background:

    linear-gradient(

        rgba(0,0,0,.78),

        rgba(0,0,0,.55),

        rgba(0,0,0,.82)

    );

    backdrop-filter:blur(5px);

    z-index:2;

}

/*=========================================================
CONTAINER
=========================================================*/

.edid-login-container{

    position:relative;

    z-index:10;

    width:92%;

    max-width:1500px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:100px;

    padding:60px;

}

/*=========================================================
COLONNE GAUCHE
=========================================================*/

.edid-left{

    flex:1;

    animation:

    edidFadeLeft

    1.1s ease;

}

@keyframes edidFadeLeft{

    from{

        opacity:0;

        transform:translateX(-80px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

.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:68px;

    line-height:1;

    font-weight:800;

    margin-bottom:25px;

    text-shadow:

    0 8px 35px rgba(0,0,0,.60);

}

.edid-subtitle{

    font-size:26px;

    color:#f5c14b;

    font-weight:600;

    margin-bottom:25px;

}

.edid-separator{

    width:120px;

    height:4px;

    background:#f5c14b;

    border-radius:30px;

    margin:30px 0;

}

.edid-description{

    font-size:20px;

    line-height:1.8;

    color:#e5e7eb;

}

/*=========================================================
CARTE PREMIUM
=========================================================*/

.edid-right{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    animation:edidFadeRight 1.2s ease;

}

@keyframes edidFadeRight{

    from{

        opacity:0;

        transform:translateX(80px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

.edid-login-card{

    position:relative;

    overflow:hidden;

    width:100%;

    max-width:560px;

    padding:60px;

    border-radius:32px;

    background:rgba(18,18,18,.58);

    backdrop-filter:blur(28px);

    -webkit-backdrop-filter:blur(28px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:

    0 25px 80px rgba(0,0,0,.55);

}

/*=========================================================
HALO LUMINEUX
=========================================================*/

.edid-login-card::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:

    radial-gradient(

    rgba(247,181,0,.30),

    transparent 70%

    );

    filter:blur(20px);

}

.edid-login-card::after{

    content:"";

    position:absolute;

    bottom:-220px;

    left:-220px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:

    radial-gradient(

    rgba(0,180,255,.22),

    transparent 70%

    );

    filter:blur(25px);

}

/*=========================================================
LOGO
=========================================================*/

.edid-logo-circle{

    position:relative;

    z-index:5;

    width:110px;

    height:110px;

    margin:auto;

    margin-bottom:35px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:48px;

    background:

    linear-gradient(

    135deg,

    #f7b500,

    #ff7b00

    );

    box-shadow:

    0 0 40px rgba(247,181,0,.50);

}

.edid-logo-circle::before{

    content:"";

    position:absolute;

    inset:-12px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.20);

}

/*=========================================================
TITRES
=========================================================*/

.edid-login-card h2{

    position:relative;

    z-index:5;

    text-align:center;

    font-size:36px;

    font-weight:700;

    margin-bottom:15px;

    color:#ffffff;

}

.edid-login-text{

    position:relative;

    z-index:5;

    text-align:center;

    color:#d1d5db;

    font-size:17px;

    line-height:1.8;

    margin-bottom:40px;

}

/*=========================================================
FORMULAIRE
=========================================================*/

.edid-login-form{

    position:relative;

    z-index:5;

}

.edid-input{

    margin-bottom:25px;

}

.edid-input label{

    display:block;

    margin-bottom:10px;

    color:#f7b500;

    font-weight:600;

    font-size:14px;

}

.edid-input input{

    width:100%;

    height:58px;

    padding:0 20px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.07);

    color:#ffffff;

    font-size:15px;

    transition:.35s;

}

.edid-input input::placeholder{

    color:#cbd5e1;

}

.edid-input input:hover{

    background:rgba(255,255,255,.10);

}

.edid-input input:focus{

    outline:none;

    border-color:#f7b500;

    background:rgba(255,255,255,.12);

    box-shadow:

    0 0 25px rgba(247,181,0,.25);

}

/*=========================================================
TURNSTILE
=========================================================*/

.edid-turnstile{

    display:flex;

    justify-content:center;

    margin:35px 0;

    transform:scale(.98);

}

/*=========================================================
BOUTON PREMIUM
=========================================================*/

.edid-login-button{

    position:relative;

    overflow:hidden;

    width:100%;

    height:62px;

    border:none;

    border-radius:16px;

    cursor:pointer;

    font-size:17px;

    font-weight:700;

    color:#ffffff;

    background:

    linear-gradient(

        135deg,

        #ff9800 0%,

        #f7b500 50%,

        #ff6a00 100%

    );

    box-shadow:

    0 18px 40px rgba(247,181,0,.35);

    transition:.35s;

}

.edid-login-button::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:120%;

    height:100%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.35),

        transparent

    );

    transition:.8s;

}

.edid-login-button:hover::before{

    left:120%;

}

.edid-login-button:hover{

    transform:

    translateY(-4px);

    box-shadow:

    0 25px 50px rgba(247,181,0,.55);

}

.edid-login-button:active{

    transform:scale(.98);

}

/*=========================================================
LIENS
=========================================================*/

.edid-links{

    margin-top:28px;

    text-align:center;

}

.edid-links a{

    color:#ffffff;

    text-decoration:none;

    opacity:.85;

    font-size:14px;

    transition:.30s;

}

.edid-links a:hover{

    color:#f7b500;

}

/*=========================================================
SECURITY
=========================================================*/

.edid-security{

    margin-top:30px;

    padding-top:25px;

    border-top:

    1px solid rgba(255,255,255,.10);

    text-align:center;

    font-size:13px;

    color:#d1d5db;

    letter-spacing:1px;

}

/*=========================================================
MESSAGE ERREUR
=========================================================*/

.edid-error{

    margin-bottom:25px;

    padding:18px;

    border-radius:16px;

    background:

    rgba(180,0,0,.28);

    border:

    1px solid rgba(255,80,80,.40);

    color:#ffffff;

    font-size:14px;

    text-align:center;

}

/*=========================================================
FOOTER
=========================================================*/

.edid-footer{

    position:absolute;

    bottom:35px;

    left:0;

    width:100%;

    z-index:20;

    text-align:center;

}

.edid-footer-content{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    font-size:13px;

    letter-spacing:2px;

    color:#ffffff;

    opacity:.90;

}

.edid-version{

    margin-top:15px;

    color:#d1d5db;

    font-size:12px;

    opacity:.75;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media (max-width:1200px){

    .edid-login-container{

        gap:60px;

        padding:50px;

    }

    .edid-brand h1{

        font-size:56px;

    }

}

@media (max-width:992px){

    .edid-login-container{

        flex-direction:column;

        text-align:center;

        padding:40px 25px;

    }

    .edid-left{

        max-width:700px;

    }

    .edid-brand{

        margin:auto;

    }

    .edid-separator{

        margin:30px auto;

    }

    .edid-right{

        width:100%;

    }

    .edid-login-card{

        max-width:620px;

    }

}

@media (max-width:768px){

    .edid-login-container{

        width:95%;

        padding:20px;

    }

    .edid-brand h1{

        font-size:42px;

    }

    .edid-subtitle{

        font-size:20px;

    }

    .edid-description{

        font-size:16px;

    }

    .edid-login-card{

        padding:35px;

        border-radius:24px;

    }

    .edid-logo-circle{

        width:90px;

        height:90px;

        font-size:38px;

    }

}

@media (max-width:480px){

    .edid-brand h1{

        font-size:32px;

    }

    .edid-login-card{

        padding:25px;

    }

    .edid-login-button{

        font-size:15px;

        height:55px;

    }

}

/*=========================================================
ANIMATION DU LOGO
=========================================================*/

.edid-logo-circle{

    animation:

    edidPulse 4s ease-in-out infinite;

}

@keyframes edidPulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.05);

    }

    100%{

        transform:scale(1);

    }

}

/*=========================================================
ANIMATION DE LA CARTE
=========================================================*/

.edid-login-card{

    animation:

    edidCard 1.3s ease;

}

@keyframes edidCard{

    from{

        opacity:0;

        transform:

        translateY(40px)

        scale(.95);

    }

    to{

        opacity:1;

        transform:

        translateY(0)

        scale(1);

    }

}

/*=========================================================
SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:#f7b500;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ff9900;

}

/*=========================================================
SELECTION
=========================================================*/

::selection{

    background:#f7b500;

    color:#000;

}

/*=========================================================
PETITS EFFETS PREMIUM
=========================================================*/

.edid-input input{

    transition:

    all .35s ease;

}

.edid-login-button{

    transition:

    all .35s ease;

}

.edid-login-card{

    transition:

    all .40s ease;

}

.edid-login-card:hover{

    transform:

    translateY(-8px);

    box-shadow:

    0 35px 100px rgba(0,0,0,.65);

}

/*=========================================================
FOOTER
=========================================================*/

.edid-footer{

    animation:

    edidFooter 2s ease;

}

@keyframes edidFooter{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

/*=========================================================
VERSION
=========================================================*/

.edid-version{

    text-transform:uppercase;

    letter-spacing:2px;

}