﻿body {
    height: 100vh;
    background: radial-gradient(circle at top right, rgba(11,94,215,0.08), transparent 40%), linear-gradient(135deg, #f4f7fb, #f4f7fb);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enterprise-login {
    width: 100%;
    max-width: 420px;
}

/* BRAND HEADER */
.brand-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
    color: #0b5ed7;
}

    .brand-header i {
        font-size: 2.2rem;
    }

    .brand-header h1 {
        font-size: 1.4rem;
        margin: 0;
        font-weight: 600;
    }

    .brand-header span {
        font-size: 0.8rem;
        color: #6c757d;
    }

/* LOGIN CARD */
.login-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 34px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

    .login-card h3 {
        font-weight: 600;
    }

.subtitle {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 22px;
}

/* TOGGLE */
.login-type-toggle {
    display: flex;
    background: #f1f3f5;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 22px;
}

.toggle-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    color: #495057;
}

    .toggle-btn.active {
        background: #ffffff;
        box-shadow: 0 3px 8px rgba(0,0,0,0.12);
        color: #0b5ed7;
    }

/* FORM */
.form-label {
    font-size: 0.75rem;
    font-weight: 600;
}

.form-control {
    padding: 10px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 18px;
}

    .options a {
        text-decoration: none;
    }

/* BUTTON */
.btn-login {
    background: linear-gradient(135deg, #0b5ed7, #084298);
    border: none;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 7px;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(11,94,215,0.35);
    transition: all 0.2s ease;
}

    .btn-login:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(11,94,215,0.45);
    }

    .btn-login:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(11,94,215,0.3);
    }

.divider {
    margin: 22px 0;
    font-size: 0.75rem;
    text-align: center;
    color: #adb5bd;
}

/* ALT */
.alt-btn {
    border: 1px solid #dee2e6;
    padding: 10px;
    font-size: 0.8rem;
    border-radius: 6px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    color: #333;
    text-decoration: none;
}

.security-text {
    text-align: center;
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 20px;
}

.loader {
    display: none;
}
