body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif; /* Add this line */
}

    body::before, body::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 8px;
        background: linear-gradient(to right, #4CAF50, /* Green */
        #2196F3, /* Blue */
        #F44336, /* Red */
        #FFEB3B /* Yellow */
        );
    }

    body::before {
        top: 0;
    }

    body::after {
        bottom: 0;
    }

h1, h2, h3, h4, h5, h6,
.form-title,
.form-label,
button,
input,
a {
    font-family: 'Poppins', sans-serif;
}

/* Optional: adjust specific weights for different elements */
.form-title {
    font-weight: 600;
}

.form-label {
    font-weight: 500;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 400px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo {
    height: 70px;
    width: auto;
}

.logo-divider {
    height: 40px;
    width: 1px;
    background-color: #dee2e6;
    display: inline-block;
}

.login-button {
    background-color: #0d6efd;
    color: white;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-top: 15px;
}

.forgot-password {
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
}

.border-top {
    height: 4px;
    /* background: linear-gradient(to right, #4CAF50 25%, #2196F3 25%, #2196F3 50%, #F44336 50%, #F44336 75%, #FFEB3B 75%); */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.border-bottom {
    height: 4px;
    background: linear-gradient(to right, #4CAF50 25%, #2196F3 25%, #2196F3 50%, #F44336 50%, #F44336 75%, #FFEB3B 75%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.ios-mobile-only {
    display: none;
}

.ios-mobile-only-footer {
    display: none;
}

.ios-mobile-only.is-ios {
    display: block;
}

.ios-mobile-only-footer.is-ios {
    display: block;
}
