*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{

    background:#f5f7fb;

    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;
}

.auth-box{

    width:420px;

    background:white;

    border-radius:30px;

    padding:40px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 20px 60px rgba(0,0,0,0.05);
}

.logo{

    text-align:center;

    font-size:38px;
    font-weight:800;

    color:#6c63ff;
}

.logo span{
    color:#111;
}

.heading{

    margin-top:20px;

    text-align:center;

    font-size:28px;
    font-weight:700;
}

.subheading{

    text-align:center;

    margin-top:10px;

    color:#777;
}

.form-group{

    margin-top:22px;
}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-weight:700;
}

.input-box{

    position:relative;
}

.input-box i{

    position:absolute;

    top:18px;
    left:16px;

    color:#777;
}

.input-box input{

    width:100%;

    height:55px;

    border:none;

    background:#f5f7fb;

    border-radius:16px;

    padding-left:48px;

    font-size:15px;
}

.auth-btn{

    width:100%;

    height:55px;

    border:none;

    background:#6c63ff;

    color:white;

    border-radius:16px;

    margin-top:28px;

    font-size:17px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}

.auth-btn:hover{

    background:#5b52f0;
}

.bottom-text{

    margin-top:25px;

    text-align:center;

    color:#666;
}

.bottom-text a{

    color:#6c63ff;

    text-decoration:none;

    font-weight:700;
}

.message{

    margin-top:18px;

    background:#ecebff;

    color:#6c63ff;

    padding:14px;

    border-radius:14px;

    text-align:center;

    font-weight:700;
}
