/* =========================================================
   3P CONSEIL - LOGIN
========================================================= */

:root{

    --bg:#f6f8f6;

    --panel:#f2f7f3;

    --white:#ffffff;

    --primary:#2f7d4d;

    --primary-light:#edf8f1;

    --text:#223129;

    --text-light:#728178;

    --border:#e7ece8;

    --shadow:0 20px 60px rgba(0,0,0,.06);

    --radius:22px;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--bg);

    color:var(--text);

}

.page{

    display:flex;

    min-height:100vh;

}

/* ===========================
        LEFT PANEL
=========================== */

.left-panel{

    width:340px;

    background:linear-gradient(

        180deg,

        #f3f8f4,

        #eef5f0

    );

    border-right:1px solid var(--border);

    padding:42px;

    position:relative;

    overflow:hidden;

}

.left-panel::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:-420px;

    top:-120px;

    border-radius:50%;

    border:1px solid rgba(47,125,77,.08);

    box-shadow:

        0 0 0 70px rgba(47,125,77,.04),

        0 0 0 140px rgba(47,125,77,.03),

        0 0 0 210px rgba(47,125,77,.025);

}

.brand{

    position:relative;

    z-index:2;

}

.brand h1{

    font-size:34px;

    font-weight:700;

    margin-bottom:8px;

}

.brand p{

    color:var(--text-light);

    font-size:18px;

}

/* ===========================
        RIGHT PANEL
=========================== */

.right-panel{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px;

}

.login-wrapper{

    width:100%;

    max-width:620px;

}

.logo{

    text-align:center;

    margin-bottom:38px;

}

.logo h2{

    color:var(--primary);

    font-size:68px;

    font-weight:700;

    line-height:1;

}

.logo h1{

    margin-top:10px;

    font-size:52px;

    font-weight:700;

}

.logo p{

    margin-top:10px;

    color:var(--text-light);

    font-size:22px;

}
/* ===========================
        LOGIN CARD
=========================== */

.login-card{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:52px;

    box-shadow:var(--shadow);

}

.login-card h2{

    text-align:center;

    font-size:40px;

    margin-bottom:10px;

}

.login-card span{

    display:block;

    text-align:center;

    color:var(--text-light);

    margin-bottom:42px;

    font-size:17px;

}

/* ===========================
        FORM
=========================== */

.form-group{

    margin-bottom:26px;

}

.form-group label{

    display:block;

    font-weight:600;

    margin-bottom:10px;

    color:var(--text);

}

.form-group input{

    width:100%;

    height:58px;

    border:1px solid var(--border);

    border-radius:14px;

    padding:0 18px;

    font-size:16px;

    outline:none;

    transition:.25s;

    background:#fff;

}

.form-group input:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(47,125,77,.10);

}

button{

    width:100%;

    height:58px;

    margin-top:10px;

    border:none;

    border-radius:14px;

    background:var(--primary);

    color:white;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

button:hover{

    background:#286a41;

    transform:translateY(-2px);

}

/* ===========================
        FOOTER
=========================== */

footer{

    margin-top:36px;

    text-align:center;

    color:var(--text-light);

    font-size:14px;

}

/* ===========================
        RESPONSIVE
=========================== */

@media(max-width:1000px){

    .left-panel{

        display:none;

    }

    .right-panel{

        padding:30px;

    }

    .logo h2{

        font-size:52px;

    }

    .logo h1{

        font-size:40px;

    }

}

@media(max-width:650px){

    .login-card{

        padding:32px;

    }

    .login-card h2{

        font-size:32px;

    }

    .logo h1{

        font-size:32px;

    }

    .logo p{

        font-size:18px;

    }

}
/* ==========================================================
   PMMP LOGIN - LOGOS
========================================================== */

.login-logo{

    width:90px;

    height:auto;

    display:block;

    margin-bottom:28px;

}

.logo-image{

    width:120px;

    height:auto;

    display:block;

    margin:0 auto 24px;

}

/* ==========================================================
   PREMIUM LOGIN
========================================================== */

.login-card{

    backdrop-filter:blur(14px);

    transition:.35s;

}

.login-card:hover{

    transform:translateY(-4px);

    box-shadow:0 28px 70px rgba(47,125,77,.12);

}

.left-panel{

    position:relative;

}

.left-panel::after{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(

            circle at top left,

            rgba(47,125,77,.08),

            transparent 60%

        );

    pointer-events:none;

}

.logo h1{

    color:var(--text);

}

.logo p{

    color:var(--text-light);

}

/* ==========================================================
   INPUTS
========================================================== */

.form-group input{

    transition:

        border-color .25s,

        box-shadow .25s,

        transform .25s;

}

.form-group input:focus{

    transform:translateY(-1px);

}

/* ==========================================================
   BUTTON
========================================================== */

button{

    position:relative;

    overflow:hidden;

}

button::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:70%;

    height:100%;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.35),

            transparent

        );

    transition:.8s;

}

button:hover::before{

    left:150%;

}
/* ==========================================================
   PMMP LOGIN - ANIMATIONS
========================================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(24px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.login-wrapper{

    animation:fadeUp .7s ease;

}

.login-card{

    animation:fadeUp .9s ease;

}

/* ==========================================================
   PREMIUM BACKGROUND
========================================================== */

body{

    position:relative;

    overflow-x:hidden;

}

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

        radial-gradient(circle at top right, rgba(47,125,77,.08), transparent 35%),

        radial-gradient(circle at bottom left, rgba(47,125,77,.06), transparent 40%);

    pointer-events:none;

    z-index:-1;

}

/* ==========================================================
   LEFT PANEL
========================================================== */

.brand{

    animation:fadeUp .8s ease;

}

.brand h1{

    margin-top:18px;

}

.brand p{

    margin-top:8px;

    line-height:1.6;

}

/* ==========================================================
   FOOTER
========================================================== */

footer{

    opacity:.75;

    transition:.25s;

}

footer:hover{

    opacity:1;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1000px){

    .logo-image{

        width:95px;

    }

    .login-logo{

        width:70px;

    }

}

@media (max-width:600px){

    .right-panel{

        padding:24px;

    }

    .login-card{

        padding:28px;

    }

    .logo h1{

        font-size:30px;

    }

    .logo p{

        font-size:16px;

    }

    .form-group input,

    button{

        height:54px;

    }

}