﻿body {
    background: #f5f5f5;
}

/* Header */
.top-header {
    background: #fff;
    padding: 8px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Two-color border */
    border-bottom: 12px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #002b49 10%, #c8262b 10%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
}

.menu-icon {
    font-size: 28px;
    cursor: pointer;
    float: right;
}

/* Login card */
.login-container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 20px;
    padding: 10px 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding-bottom: 30px;
}

.btn-provider {
    border-radius: 25px;
    padding: 12px;
    background: #f0f0f0;
    font-weight: 500;
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

    .divider::before, .divider::after {
        content: "";
        height: 1px;
        width: 40%;
        background: #ccc;
        position: absolute;
        top: 50%;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

    .divider span {
        background: #fff;
        padding: 0 10px;
        font-size: 13px;
        color: #777;
    }

.btn-primary-custom {
    background: #002550;
    padding: 12px;
    font-size: 17px;
    width: 100%;
    border-radius: 25px;
    color:#fff !important;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    color: #666;
}

    .footer img {
        height: 40px;
        margin: 6px;
        opacity: 0.8;
    }

.social-footer {
    margin-top: 40px;
    text-align: center;
    padding: 20px 0;
}

.social-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    margin: 0 8px;
    background: #ffffff;
    border: 2px solid #c8262b;
    border-radius: 6px; /* square with slightly rounded corners */
    font-size: 20px;
    color: #c8262b;
    transition: all 0.3s ease-in-out;
}

    .social-box:hover {
        background: #c8262b;
        color: #ffffff;
        transform: translateY(-3px);
    }



