
html,
body{
    height:100%;
    margin:0;
}

body{
    

    overflow:hidden;

    font-family:
    "Segoe UI",
    sans-serif;
}

.bg-shape{
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-120px;
    left:-150px;
}

.bg-shape2{
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
    bottom:-100px;
    left:-80px;
}

.auth-wrapper{
    min-height:100vh;
    position:relative;
    z-index:2;
}

.notification-icon{
    position:absolute;
    top:30px;
    right:30px;
    color:#fff;
    font-size:28px;
}

.logo{
    width:120px;
    margin-top:150px;
    margin-bottom:15px;
}

.brand-name{
    color:#fff;
    font-size:3rem;
    font-weight:700;
}

.brand-name span{
    color:#d1fae5;
}

.tagline{
    color:#fff;
    font-size:1.5rem;
    font-style:italic;
}

.version{
    color:rgba(255,255,255,.8);
    margin-top:15px;
}

.action-buttons{
    width:100%;
    max-width:420px;
   
}

.bottom-actions{
    position: fixed;
    bottom: 1px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-outline-custom{

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    height:60px;

    font-size:24px;

    font-weight:500;

    background:transparent;

    transition:.3s;
}

.btn-outline-custom:hover{

    background:#fff;

    color:#000;

}

.reset-link{

    color:#fff;

    font-size:22px;

    text-decoration:none;

}

.reset-link:hover{

    color:#d1fae5;

}

@media(max-width:768px){

    .brand-name{
        font-size:2.5rem;
    }

    .tagline{
        font-size:1.2rem;
    }

    .btn-outline-custom{
        font-size:20px;
    }

}