*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
 
body{
 
    background:
    radial-gradient(circle at top left,#ff74c81f 0%,transparent 35%),
    radial-gradient(circle at right,#8f4cff14 0%,transparent 25%),
    linear-gradient(90deg,#ffb2dc 0%,#ffd9ef 40%,#fff7fb 100%);
 
    min-height:100vh;
    overflow-x:hidden;
    position:relative;
}
 
/* BACKGROUND */
 
.bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:-1;
}
 
.circle-1{
    width:350px;
    height:350px;
    background:#ff2d8d6e;
    top:0;
    left:-100px;
}
 
.circle-2{
    width:400px;
    height:400px;
    background:#4c00ff2f;
    top:250px;
    right:-120px;
}
 
.circle-3{
    width:250px;
    height:250px;
    background:#d9f43b4f;
    bottom:100px;
    left:30%;
}
 
/* NAVBAR */

.custom-navbar{
    width:100%;
    padding:28px 0;
    position:relative;
    z-index:100;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:94px;
}

.logo{
    display:flex;
    align-items:center;
    height:125px;
    
}

.logo img{
    max-height:125px;
    width:auto;
}

.menu{
    display:flex;
    gap:36px;
}

.menu a{
    text-decoration:none;
    color:#2E0F4F;
    font-size:20px;
    font-weight:500;
    position:relative;
}

.menu a.active::after{
    content:'';
    width:100%;
    height:3px;
    background:#d9f43b;
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:50px;
}

.nav-buttons{
    display:flex;
    align-items:center;
    gap:14px;
}

.btn-nav{
    background:#d9f43b;
    color:#2E0F4F;
    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
}

.btn-login{
    background:#4510D0;
    color:#fff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* LOGIN */
 
.login-container{
    width:100%;
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 20px;
}
 
.login-card{
 
    width:100%;
    max-width:550px;
 
    background:rgba(255,255,255,.55);
 
    backdrop-filter:blur(15px);
 
    border:1px solid rgba(255,255,255,.5);
 
    padding:50px;
 
    border-radius:35px;
 
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
 
.login-header{
    text-align:center;
    margin-bottom:40px;
}
 
.tag{
 
    display:inline-block;
 
    background:#d9f43b;
 
    color:#29004b;
 
    padding:10px 20px;
 
    border-radius:50px;
 
    font-size:.9rem;
 
    font-weight:700;
 
    margin-bottom:20px;
}
 
.login-header h1{
 
    font-size:3rem;
 
    line-height:1;
 
    color:#29004b;
 
    margin-bottom:15px;
 
    font-weight:900;
}
 
.login-header p{
 
    color:#4b4060;
 
    font-size:1rem;
 
    line-height:1.8;
}
 
/* CAMPOS */
 
.campo{
    display:flex;
    flex-direction:column;
    margin-bottom:22px;
}
 
.campo label{
 
    margin-bottom:8px;
 
    font-weight:600;
 
    color:#29004b;
}
 
.campo input{
 
    width:100%;
 
    padding:18px 22px;
 
    border:none;
 
    border-radius:16px;
 
    background:#fff;
 
    font-size:1rem;
 
    outline:none;
 
    transition:.3s;
}
 
.campo input:focus{
 
    box-shadow:0 0 0 3px rgba(69,16,208,.2);
}
 
/* BOTÃO */
 
.btn-login{
 
    width:100%;
 
    border:none;
 
    cursor:pointer;
 
    padding:18px;
 
    margin-top:10px;
 
    border-radius:18px;
 
    background:linear-gradient(
        135deg,
        #4510D0,
        #6f32ff
    );
 
    color:#fff;
 
    font-size:1rem;
 
    font-weight:700;
 
    transition:.3s;
}
 
.btn-login:hover{
 
    transform:translateY(-3px);
 
    box-shadow:0 15px 35px rgba(69,16,208,.3);
}
 
/* LINKS */
 
.links{
 
    display:flex;
 
    justify-content:space-between;
 
    margin-top:25px;
}
 
.links a{
 
    text-decoration:none;
 
    color:#4510D0;
 
    font-size:.95rem;
 
    font-weight:600;
}
 
.links a:hover{
    text-decoration:underline;
}
 
/* FOOTER */
 
.kok-footer-artimola{
    font-family:'Poppins',sans-serif;
    color:#fff;
}
 
/* PRIMEIRA CAMADA */
 
.kok-footer-top{
    background:linear-gradient(
        135deg,
        #6A00FF,
        #9B00FF,
        #FF008A
    );
    padding:70px 0;
}
 
.kok-footer-top .kok-container{
    width:90%;
    max-width:1300px;
    margin:auto;
 
    display:grid;
    grid-template-columns:
    2fr 1fr 1fr 1fr;
 
    gap:50px;
}
 
.kok-footer-logo img{
    max-width:220px;
    margin-bottom:20px;
}
 
.kok-footer-col p{
    line-height:1.8;
    color:rgba(255,255,255,.85);
    margin-bottom:25px;
}
 
.kok-footer-col h4{
    margin-bottom:25px;
    font-size:1.2rem;
    font-weight:700;
}
 
.kok-footer-col ul{
    list-style:none;
}
 
.kok-footer-col ul li{
    margin-bottom:12px;
}
 
.kok-footer-col ul li a{
    text-decoration:none;
    color:rgba(255,255,255,.85);
    transition:.3s;
}
 
.kok-footer-col ul li a:hover{
    color:#fff;
    padding-left:5px;
}
 
/* REDES */
 
.kok-social-links{
    display:flex;
    gap:15px;
}
 
.kok-social-links a{
    width:45px;
    height:45px;
 
    display:flex;
    align-items:center;
    justify-content:center;
 
    border-radius:50%;
    background:rgba(255,255,255,.15);
 
    color:#fff;
    text-decoration:none;
    transition:.3s;
}
 
.kok-social-links a:hover{
    background:#fff;
    color:#7d00ff;
    transform:translateY(-4px);
}
 
/* SEGUNDA CAMADA */
 
.kok-footer-bottom{
    background:#490188;
    padding:25px 0;
}
 
.kok-footer-bottom-content{
    width:90%;
    max-width:1300px;
    margin:auto;
 
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}
 
.kok-copyright{
    color:rgba(255,255,255,.75);
    font-size:.95rem;
}
 
.kok-footer-logos{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}
 
.kok-footer-logos a{
    display:flex;
    align-items:center;
}
 
.kok-footer-logos img{
    height:38px;
    opacity:.8;
    transition:.3s;
}
 
.kok-footer-logos img:hover{
    opacity:1;
    transform:scale(1.05);
}

/* RESPONSIVO */
 
@media(max-width:900px){
 
    .menu{
        display:none;
    }
 
    .logo{
        font-size:2.5rem;
    }
 
}
 
@media(max-width:600px){
 
    .login-card{
        padding:35px 25px;
    }
 
    .login-header h1{
        font-size:2.2rem;
    }
 
    .links{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }
 
}

.nav-wrapper{
    display:flex;
    align-items:center;
}

.logo{
    flex:1;
}

.menu{
    flex:1;
    display:flex;
    justify-content:center;
    gap:34px;
}

.nav-buttons{
    flex:1;
    display:flex;
    justify-content:center;
    gap:14px;
}   

.logo{
    margin-left:80px;
}