.input-username,
.input-password {
    border: 1px solid rgb(209, 208, 208);
}

.cancel-button {
    border: 1px solid rgb(209, 208, 208) !important;
}

@media (min-width: 992px) {
    .rounded-lg-pill {
        border-radius: 50rem !important;
    }
}

/* Adjust padding-top based on your header height */
.pt-header {
    padding-top: 70px;
    /* Adjust based on your actual header height */
}

/* Ensure proper flexbox layout */
.guest-content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Content grows to fill available space */
.guest-content-wrapper main {
    flex: 1 0 auto;
}

/* Footer stays at bottom */
.guest-content-wrapper footer {
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .guest-content-wrapper {
        padding-bottom: 12%;
    }

    .login-layout {
        padding-bottom: 17%;
    }
}

@media (max-width: 991px) {
    .guest-content-wrapper {
        padding-bottom: 44%;
    }

    .login-layout {
        padding-bottom: 52%;
    }
}

@media (max-width: 840px) {
    .login-layout {
        padding-bottom: 60%;
    }
}

@media (max-width: 768px) {
    .pt-header {
        padding-top: 60px;
        /* Smaller padding on mobile if needed */
    }
}

@media (max-width: 420px) {
    .login-layout {
        padding-bottom: 70%;
    }
}

@media (max-width: 316px) {
    .login-layout {
        padding-bottom: 92%;
    }
}
