﻿
.login-wrapper {
    min-height: calc(100vh - var(--header-height, 60px) - var(--footer-height, 35px));
    background: linear-gradient(135deg, #723795 0%, #3d2d82 50%, #e43612 100%);
    background-image: url('/images/MqLoginBackground.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto; /* дозволяємо прокрутку якщо контент не вміщується */
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

    .logo-container img {
        max-width: 200px;
        height: auto;
        margin-bottom: 20px;
    }

.provider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.login-title {
    color: #3d2d82;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.btn-sso {
    background: linear-gradient(135deg, #e43612 0%, #f39200 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 54, 18, 0.4);
    margin-bottom: 15px;
}

    .btn-sso:hover {
        background: linear-gradient(135deg, #f39200 0%, #e43612 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(228, 54, 18, 0.6);
        color: white;
    }

    .btn-sso i {
        margin-right: 10px;
    }

.remember-me {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

    .remember-me label {
        color: #3d2d82;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .remember-me input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #e43612;
    }

.alt-login {
    text-align: center;
    margin-top: 20px;
}

    .alt-login .btn {
        background: linear-gradient(135deg, #723795 0%, #3d2d82 100%);
        border: none;
        color: white;
        border-radius: 10px;
        padding: 12px 25px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .alt-login .btn:hover {
            background: linear-gradient(135deg, #3d2d82 0%, #723795 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(61, 45, 130, 0.4);
        }
