/* ===========================
   ASSXM CV
   style.css
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    background:#07140d;

    color:#ffffff;

}

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

.background{

    position:fixed;
    inset:0;

    background:
    radial-gradient(circle at top left,#1ca55b22,transparent 40%),
    radial-gradient(circle at bottom right,#00ff9950,transparent 35%),
    linear-gradient(135deg,#07140d,#0f2419,#08120d);

    z-index:-2;

}

.blur{

    position:absolute;

    border-radius:50%;

    filter:blur(130px);

    animation:float 8s ease-in-out infinite;

}

.blur1{

    width:350px;
    height:350px;

    background:#00ff88;

    top:-120px;
    left:-80px;

    opacity:.22;

}

.blur2{

    width:400px;
    height:400px;

    background:#00b96b;

    right:-120px;
    bottom:-120px;

    opacity:.20;

}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(35px);
    }

    100%{
        transform:translateY(0px);
    }

}

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

.container{

    width:100%;
    padding:20px;

    display:flex;
    justify-content:center;
    align-items:center;

}

/* ===========================
   LOGIN CARD
=========================== */

.login-card{

    width:100%;
    max-width:420px;

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

    backdrop-filter:blur(18px);

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

    border-radius:28px;

    padding:45px;

    box-shadow:
    0 15px 45px rgba(0,0,0,.45);

    animation:fade .7s;

}

@keyframes fade{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

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

.logo{

    display:flex;
    justify-content:center;

    margin-bottom:25px;

}

.logo img{

    width:90px;
    height:90px;

    border-radius:50%;

    object-fit:cover;

    box-shadow:0 0 25px rgba(0,255,150,.45);

}

/* ===========================
   TEXT
=========================== */

h1{

    text-align:center;

    font-size:30px;

    margin-bottom:8px;

    font-weight:600;

}

.subtitle{

    text-align:center;

    color:#c9d9d0;

    margin-bottom:35px;

    font-size:15px;

    line-height:1.6;

}

/* ===========================
   INPUT
=========================== */

.input-group{

    position:relative;

}

label{

    display:block;

    margin-bottom:10px;

    font-size:14px;

}

input{

    width:100%;

    padding:16px 52px 16px 18px;

    border-radius:14px;

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

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

    color:white;

    outline:none;

    font-size:15px;

    transition:.3s;

}

input:focus{

    border-color:#00ff88;

    box-shadow:0 0 18px rgba(0,255,136,.25);

}

input::placeholder{

    color:#9db3a7;

}

/* ===========================
   EYE
=========================== */

.toggle{

    position:absolute;

    right:15px;

    top:42px;

    background:none;

    border:none;

    color:white;

    cursor:pointer;

    font-size:18px;

}

/* ===========================
   BUTTON
=========================== */

.login-btn{

    width:100%;

    margin-top:30px;

    padding:16px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    color:#062312;

    background:linear-gradient(90deg,#00ff88,#2dffb5);

    transition:.3s;

}

.login-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,255,136,.35);

}

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

#message{

    margin-top:22px;

    text-align:center;

    font-size:14px;

    color:#ffb3b3;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:600px){

.login-card{

padding:30px 22px;

border-radius:22px;

}

.logo img{

width:75px;
height:75px;

}

h1{

font-size:24px;

}

.subtitle{

font-size:14px;

}

input{

padding:15px 50px 15px 16px;

}

}