.auth-container{
    min-width: 100%;
    min-height: 100vh;
    background-color: #141313;
    background-image: url("../../images/auth-bg.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
}
.auth-inner{
    min-height: 100vh;
    background-image: url("../../images/auth-inner-bg.png");
    background-repeat: no-repeat;
    background-size: 250px auto;
    background-position: left bottom;
}

.auth-inner .row{
    min-height: 100vh;
}

.auth-container .logo{
    width: 400px;
    height: auto;
    margin-bottom: 37px;
    max-width: 100%;
}
.auth-container h1{
    font-size: 48px;
    font-weight: 800;
    line-height: 52px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--petals-white);
}
.auth-container p{
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    color: var(--petals-white);
}
.auth-container .box{
    border-radius: 20px;
    background-color: var(--petals-white);
    padding: 60px 40px;
    color: var(--petals-black);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin: 20px 0;

}
@media (max-width: 768px) {
    .auth-container .box{
        padding: 40px 15px;
    }
}
.auth-container .box .logo-heading{
    width: 120px;
    height: auto;
    margin-bottom: 24px;
}
.auth-container .box h2{
    font-size: 24px;
    font-weight: 800;
    line-height: 33px;
    text-align: center;
    color: var(--petals-blue);
    margin-bottom: 21px;
}
.auth-container .box p{
    color: var(--petals-black);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}
.auth-container .box a{
    text-decoration: none;
}
