@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

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

body{

    height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    radial-gradient(circle at top left,
    rgba(0,255,140,.08),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(0,255,140,.05),
    transparent 30%),

    #03100c;

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

    color:white;

    position:relative;
}

/* =========================================================
   BG GLOW
========================================================= */

.bg-blur,
.bg-blur2{

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    filter:blur(90px);

    pointer-events:none;
}

.bg-blur{

    top:-200px;
    left:-150px;

    background:rgba(0,255,140,.10);
}

.bg-blur2{

    bottom:-200px;
    right:-150px;

    background:rgba(0,255,140,.08);
}

/* =========================================================
   LOGIN BOX
========================================================= */

.login-box{

    width:100%;

    max-width:460px;

    padding:20px;

    position:relative;

    z-index:2;

    height:100vh;
    
    display:flex;
    
    align-items:center;
    
    justify-content:center;
}

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

.login-card{

    background:
    linear-gradient(
        145deg,
        rgba(2,12,9,.96),
        rgba(4,20,15,.98)
    );

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

    border-radius:38px;

    padding:32px 28px;

    box-shadow:
    0 0 25px rgba(0,255,140,.08),
    0 20px 50px rgba(0,0,0,.45);

    backdrop-filter:blur(10px);

    position:relative;

    overflow:hidden;
}

/* brillo */

.login-card::before{

    content:"";

    position:absolute;

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

    width:250px;
    height:250px;

    background:
    radial-gradient(
        circle,
        rgba(0,255,140,.10),
        transparent 70%
    );

    border-radius:50%;
}

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

.logo{

    display:flex;

    justify-content:center;

    margin-bottom:25px;
}

.logo img{

    width:95px;

    height:95px;

    border-radius:50%;

    object-fit:cover;

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

    box-shadow:
    0 0 30px rgba(0,255,140,.20);
}

/* =========================================================
   TITLES
========================================================= */

.login-title{

    text-align:center;

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

    font-size:32px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:8px;

    color:white;

    text-shadow:
    0 0 8px rgba(255,255,255,.12);
}

.login-subtitle{

    text-align:center;

    color:#b8ffe1;

    font-size:15px;

    margin-bottom:30px;
}

/* =========================================================
   BACK LINK
========================================================= */

.back-link{

    text-align:center;

    margin-bottom:30px;
}

.back-link a{

    color:#98ffd8;

    text-decoration:none;

    font-size:14px;

    transition:.3s;
}

.back-link a:hover{

    color:white;
}

/* =========================================================
   FORM GROUP
========================================================= */

.form-group{

    position:relative;

    margin-bottom:20px;
}

/* =========================================================
   ICONS
========================================================= */

.input-icon{

    position:absolute;

    left:20px;
    top:50%;

    transform:translateY(-50%);

    color:#8effcb;

    font-size:16px;
}

/* =========================================================
   INPUTS
========================================================= */

.form-control{

    width:100%;

    height:58px;

    border:none !important;

    outline:none !important;

    border-radius:22px;

    padding:0 20px 0 55px;

    background:
    linear-gradient(
        145deg,
        rgba(0,0,0,.82),
        rgba(8,20,15,.92)
    );

    border:
    1px solid rgba(0,255,140,.15) !important;

    color:white;

    font-size:16px;

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

    transition:.3s;
}

.form-control::placeholder{

    color:#b8ffe1;
}

.form-control:focus{

    box-shadow:
    0 0 0 2px rgba(0,255,140,.15);
}

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

.btn-login{

    width:100%;

    height:58px;

    margin-top:10px;

    border:none;

    border-radius:22px;

    background:
    linear-gradient(
        145deg,
        #00d47a,
        #0a6d4b
    );

    color:white;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

    box-shadow:
    0 10px 30px rgba(0,255,140,.20);
}

.btn-login:hover{

    transform:translateY(-2px);

    box-shadow:
    0 15px 35px rgba(0,255,140,.30);
}

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

.footer-text{

    margin-top:20px;

    text-align:center;

    color:#8dd9b7;

    font-size:13px;
}

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

@media(max-width:768px){

    body{

        overflow:auto;
    }

    .login-box{

        padding:14px;

        height:auto;

        min-height:100vh;
    }

    .login-card{

        width:100%;

        padding:28px 20px;

        border-radius:26px;
    }

    .login-title{

        font-size:26px;
    }

    .logo img{

        width:75px;
        height:75px;
    }

    .form-control{

        height:54px;

        font-size:15px;
    }

    .btn-login{

        height:54px;

        font-size:15px;
    }
}