﻿body {
    background-color: #f4f7f6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.login-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border: none;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #212529;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

    .brand-logo span {
        color: #0d6efd; /* Primary blue for 'Link' */
    }

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

    .form-control:focus {
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    }

.btn-primary {
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    width: 100%;
}

.google-btn {
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #495057;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

    .google-btn:hover {
        background-color: #f8f9fa;
        color: #212529;
    }

.google-icon {
    width: 20px;
    height: 20px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #adb5bd;
    font-size: 0.875rem;
}

    .divider::before, .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #dee2e6;
    }

    .divider:not(:empty)::before {
        margin-right: .25em;
    }

    .divider:not(:empty)::after {
        margin-left: .25em;
    }

</style >
