﻿body {    
    font-family: Roboto, "Helvetica Neue", sans-serif !important;
    margin: 0 !important;
}

.container-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #017fcd;    
}

    .container-page .container-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        max-width: 400px;
    }

    .container-page .container-box {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
    }

        .container-page .container-box h2 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }

    .container-page .form-floating {
        position: relative;
        margin-bottom: 15px;
    }

        .container-page .form-floating label {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            
            pointer-events: none;
            transition: all 0.2s;
            color: #777;
        }

        .container-page .form-floating input {
            width: 100%;
            padding: 1rem;
            box-sizing: border-box;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

            .container-page .form-floating input:focus + label,
            .container-page .form-floating input:not(:placeholder-shown) + label {
                top: -1rem;                        
                font-size: 0.75rem;
                color: #333;
            }

    .container-page .checkbox {
        text-align: left;
    }

    .container-page #login-submit {
        margin-top: 15px;
        padding: 10px;
        font-size: 16px;
    }

    .container-page .external-logins {
        margin-top: 20px;
    }

    .container-page .external-login-btn {
        margin: 5px;
        width: 100%;
    }

    .container-page .additional-links {
        margin-top: 20px;
    }

        .container-page .additional-links p {
            margin: 5px 0;
        }

.full-width {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.right-logo {
    background: linear-gradient(180deg, #017fcd 0%, rgba(1, 127, 205, 0.6) 100%);
}

.left-logo {
    background: #fff;
}

.top-logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.external-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
}

/* Specific styling for Microsoft login button */
.provider-login-btn {
    background-color: #2F2F2F; /* Microsoft dark gray color */
    color: white;
    border: none;
}

    .provider-login-btn:hover {
        background-color: #1F1F1F;
    }

/* Microsoft logo styling */
.provider-login-logo {
    height: 24px; /* Adjust as needed */
    margin-right: 10px;
}

