.auth-wrapper{

    min-height:100vh;

    background:url("../images/login-bg.jpg") center center/cover no-repeat;

    position:relative;

}

.auth-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.auth-content{

    position:relative;

    z-index:2;

    color:#fff;

}

.auth-logo{

    height:70px;

    margin-bottom:30px;

}

.auth-content h1{

    font-size:52px;

    font-weight:700;

    margin-bottom:20px;

}

.auth-content p{

    font-size:18px;

    color:#ddd;

    line-height:1.8;

}

.stars{

    color:#D4AF37;

    font-size:32px;

    margin-top:20px;

}

.auth-card{

    position:relative;

    z-index:2;

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

    backdrop-filter:blur(18px);

    border-radius:20px;

    padding:45px;

    box-shadow:0 15px 50px rgba(0,0,0,.35);

}

.auth-card h3{

    color:#fff;

    margin-bottom:10px;

}

.auth-card p{

    color:#ddd;

    margin-bottom:30px;

}

.auth-card label{

    color:#fff;

    font-weight:600;

}

.auth-card .form-control{

    height:55px;

    border-radius:10px;

}

.auth-card textarea{

    border-radius:10px;

}

.auth-btn{

    width:100%;

    height:55px;

    border:none;

    border-radius:10px;

    background:#D4AF37;

    color:#111;

    font-weight:700;

    transition:.3s;

}

.auth-btn:hover{

    background:#C89C2C;

}

.auth-link{

    color:#D4AF37;

    text-decoration:none;

}

.auth-link:hover{

    color:#fff;

}

@media(max-width:991px){

    .auth-wrapper{

        padding:60px 0;

    }

}