.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #dadce0;
    padding: 0 16px;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    background-color: #f8f9fa;
    text-decoration: none;
    border-color: #c3c4c7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.google-btn:active {
    background-color: #f1f3f4;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-btn img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.google-btn span {
    color: #3c4043;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.25px;
}

/* Custom login page styles */
.auth-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.auth-bg {
    position: relative;
}

/* Equal height columns */
.auth-page .row.g-0.shadow-lg {
    display: flex;
    min-height: 600px;
}

.auth-page .row.g-0.shadow-lg > div {
    display: flex;
    flex: 1;
}

.auth-bg, .auth-full-page-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
}

/* Ensure content is vertically centered */
.auth-bg {
    justify-content: center;
}

.auth-full-page-content {
    justify-content: center;
}

/* Ensure inner content takes full height for centering */
.auth-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo and footer spacing */
.auth-logo {
    margin-top: auto;
    padding-top: 2rem;
}

.auth-footer {
    margin-top: auto;
    padding-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .auth-page .row.g-0.shadow-lg {
        min-height: auto;
    }
    
    .auth-full-page-content {
        min-height: 100vh;
        padding: 3rem 1.5rem !important;
    }
    
    .auth-logo img {
        width: 220px !important;
    }
    
    /* Make form column full width on mobile/tablet */
    .auth-page .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Center the form content better on mobile */
    .auth-page .auth-full-page-content {
        justify-content: center;
    }
    
    /* Adjust container width on mobile */
    .auth-page .col-xl-10 {
        padding: 0;
    }
    
    /* Remove shadow and rounded corners on mobile */
    .auth-page .shadow-lg {
        box-shadow: none !important;
        border-radius: 0 !important;
    }
}

.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-bubbles li {
    position: absolute;
    list-style: none;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    animation: animate 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

.bg-bubbles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.bg-bubbles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.bg-bubbles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.bg-bubbles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.bg-bubbles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.bg-bubbles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.bg-bubbles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.bg-bubbles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.bg-bubbles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.bg-bubbles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/* Form enhancement styles */
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
    background: #F77F2F !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e67429 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(247, 127, 47, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    background: #d66a24 !important;
}

/* Carousel indicators styling */
.carousel-indicators {
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .auth-bg {
        min-height: auto !important;
        padding: 2rem 1rem !important;
    }
    
    .carousel-item .testi-contain {
        padding: 1rem;
    }
    
    .auth-logo img {
        width: 200px !important;
    }
    
    .carousel-indicators {
        margin-top: 2rem;
    }
}
