/* CSS for Sign In Form */
.bravo-theme-holyecotreks-login-form .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    z-index: 10;
    padding: 5px;
}

.bravo-theme-holyecotreks-login-form .form-input.position-relative {
    position: relative;
}

/* CSS for Registration Form */
.compact-register-form .form-input {
    height: 50px !important;
    margin-bottom: 5px;
}

.compact-register-form .form-input input {
    height: 100% !important;
    padding-top: 15px !important;
}

.compact-register-form .form-input label {
    top: 15px !important;
}

.compact-register-form .form-input input:focus~label,
.compact-register-form .form-input input:not(:placeholder-shown)~label {
    transform: translateY(-12px) !important;
    font-size: 11px !important;
}

.compact-register-form .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
}

.compact-register-form .form-input.position-relative {
    position: relative;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    padding: 5rem 0;
    /* Reduced padding for smaller screens */
    color: #ffffff;
    font-family: 'Glacial Indifference', sans-serif !important;
    overflow: hidden;
}

@media (min-width: 1536px) {

    /* 2xl screen size */
    .final-cta-section {
        padding: 8rem 0;
        /* Original padding for 2xl and up */
    }
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.8rem;
    /* Smaller size for medium devices */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

@media (min-width: 1200px) {

    /* Large screens */
    .cta-heading {
        font-size: 3.5rem;
    }
}

.cta-subtext {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-primary-custom {
    background-color: #f36a08;
    color: #ffffff;
    border: 2px solid #f36a08;
}

.btn-primary-custom:hover {
    background-color: #d85a00;
    border-color: #d85a00;
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(243, 106, 8, 0.3);
}

.btn-secondary-custom {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary-custom:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.cta-trust-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.check-icon {
    color: #4ade80;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 15px;
        /* Mobile padding */
    }

    .cta-heading {
        font-size: 2.2rem;
    }

    .cta-subtext {
        font-size: 1.1rem;
    }

    .cta-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}