/* .auth-bg {
    position: relative;
    width: 100% !important;
    height: 80% !important;
    background-image: url("../images/auth_bg.png") !important;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 50px auto 0 auto;
} */

/* Override any background image from other CSS files */
.auth-bg {
    background-image: none !important;
}

/* Additional override to ensure no background image is shown */
.right-side .auth-bg {
    background-image: none !important;
    background: transparent !important;
}

/* Most specific override to ensure no background image is displayed */
body .auth-page .right-side .auth-bg {
    background-image: none !important;
    background: transparent !important;
}

/* Override for any minified CSS that might still have the background image */
.auth-bg[style*="background-image"] {
    background-image: none !important;
}

body {

    /* background: rgb(249, 250, 250); */
   
    /* background: linear-gradient(to right, white, rgb(252, 242, 248), rgb(247, 195, 198)); */

    /* background: linear-gradient(157deg, #b55dcd 0%, #724ebf 100%); */
    background: linear-gradient(157deg, #f5f5f7 0%, #f5f5f7 25%, #74F1FF 100%);
}

.perex {
    /* max-width: 660px; */
    padding: 24px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

body .right-side h2 {
    font-size: 60px;
    line-height: 73px;
}

.with-make {
    margin-bottom: 2rem;
    color: #f07ab5;
}

body .auth-bg {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    color: #333333;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.google-btn img {
    width: 30px;
    margin-right: 10px;
}

.google-btn:hover {
    background-color: #f1f1f1;
}

.btn-social {
    color: #fff;
    padding: 10px 15px;
}
.btn-google { background-color: #dd4b39; }
.btn-facebook { background-color: #3b5998; }
.btn-twitter { background-color: #55acee; }
.divider-text {
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.divider-text span {
    padding: 7px;
    font-size: 12px;
    position: relative;   
    z-index: 2;
}
.divider-text:after {
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #ddd;
    top: 55%;
    left: 0;
    z-index: 1;
}

.btn {
    width: 100%;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 14px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 55px;
    line-height: 55px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0);
}

.btn-facebook {
    background-color: #4267b2;
    color: #fff;
    border-color: #4267b2;
}

.btn-facebook:hover {
    color: #fff;
    background-color: #2d477a;
}

.btn-google {
    background: #fff;
    border-color: #d4d4d3;
    color: black;
}

.btn-google:hover {
    background-color: #f2f2f2;
}

.btn-primary:hover {
    color: #fff;
    background-color: #2d477a !important;
}





.background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.element {
    position: absolute;
    border-radius: 8px;
    opacity: 0.8;
    animation: float 20s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
   
}

.bubble {
    border-radius: 100%;
    background: #8eecf7(135, 206, 250, 0.6);
    box-shadow: 0 0 30px rgb(247, 248, 248);
    
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(50vw, -50vh) scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50vw, -100vh) scale(1);
        opacity: 0;
    }
}