/* ==========================================
   GOOGLE FONT
========================================== */

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

/* ==========================================
   RESET
========================================== */

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

:root{

    --primary:#6C63FF;
    --primary-dark:#5A4DF2;

    --text:#222222;
    --text-light:#6B7280;

    --background:#F6F7FC;

    --white:#FFFFFF;

}

/* ==========================================
   BODY
========================================== */

body{

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

    background:var(--background);

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:24px;

    overflow-x:hidden;

    position:relative;

}

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

.bg-circle{

    position:fixed;

    width:260px;

    height:260px;

    border-radius:50%;

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

    filter:blur(10px);

    z-index:-1;

}

.bg-left{

    top:-80px;

    left:-120px;

}

.bg-right{

    right:-100px;

    bottom:-80px;

}

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

.container{

    width:100%;

    max-width:430px;

}

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

.card{

    background:#fff;

    border-radius:32px;

    padding:36px 28px;

    box-shadow:

    0 25px 60px rgba(0,0,0,.08);

}

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

.logo-area{

    text-align:center;

    margin-bottom:26px;

}

.logo-icon{

    width:64px;
    height:64px;

    margin:auto;

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

    color:var(--primary);

    background:#F3F1FF;

    border-radius:50%;

    margin-bottom:14px;

}

.logo-icon svg{

    width:38px;
    height:38px;

}

.logo-area h2{

    font-size:30px;

    font-weight:800;

    color:#6C63FF;

    margin-top:10px;

}

.logo-area p{

    margin-top:4px;

    color:var(--text-light);

    font-size:17px;

}

/* ==========================================
   BADGE
========================================== */

.badge{

    width:fit-content;

    margin:0 auto 28px auto;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#EEEAFF;

    color:var(--primary);

    font-weight:600;

    font-size:15px;

    padding:10px 24px;

    border-radius:999px;

}

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

h1{

    text-align:center;

    font-size:32px;

    line-height:1.2;

    margin-bottom:14px;

    color:var(--text);

}

.description{

    text-align:center;

    color:var(--text-light);

    line-height:1.6;

    font-size:17px;

    margin-bottom:24px;

}

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

label{

    display:block;

    margin-bottom:12px;

    font-size:18px;

    font-weight:600;

}

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

.input-group{

    position:relative;
    margin-bottom:40px;

}

.input-icon{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    font-size:20px;

    z-index:2;

}

.input-group input{

    width:100%;

    height:60px;

    border:2px solid #E7E8EF;

    border-radius:18px;

    padding-left:55px;

    padding-right:20px;

    font-size:17px;

    outline:none;

    transition:.25s;

}

.input-group input:focus{

    border-color:#6C63FF;

    box-shadow:0 0 0 5px rgba(108,99,255,.12);

}

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

button{

    width:100%;
    margin-bottom:32px;

    height:64px;

    border:none;

    border-radius:18px;

    background:linear-gradient(
    135deg,
    #735DFF,
    #5D48F3);

    color:#fff;

    font-size:22px;

    font-weight:700;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    transition:.25s;

    box-shadow:

    0 15px 35px rgba(108,99,255,.35);

}

button:hover{

    transform:translateY(-2px);

}

button:active{

    transform:scale(.98);

}

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

#message{

    margin-top:18px;

    text-align:center;

    font-size:15px;

    font-weight:500;

}

/* ==========================================
   DIVIDER
========================================== */

.divider{

    display:flex;

    align-items:center;

    gap:14px;

    margin:34px 0 22px;

}

.divider::before,

.divider::after{

    content:"";

    flex:1;

    height:1px;

    background:#ECECEC;

}

.divider span{

    color:var(--text-light);

    font-size:15px;

}

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

.wa-button{

    width:100%;

    height:54px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    text-decoration:none;

    background:#F5F5FF;

    border:1px solid #E8E8F3;

    border-radius:16px;

    color:#6C63FF;

    font-weight:600;

    transition:.25s;

}

.wa-button:hover{

    background:#EEEAFE;

}

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

@media(max-width:480px){

    body{

        padding:18px;

    }

    .card{

        padding:28px 24px;

        border-radius:28px;

    }

    .logo-area h2{

        font-size:30px;

    }

    h1{

        font-size:34px;

    }

    .description{

        font-size:17px;
        

    }

    .input-group input{

        font-size:17px;

        height:58px;

    }

    button{

        height:58px;

        font-size:20px;

    }

}