@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/Google-Sans.ttf') format('truetype');
    font-weight: 100 900;   /* variable range */
    font-style: normal;
    font-display: swap;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Google Sans';
}

body {
    display: flex;
    align-items: center;
    /* Vertical centering */
    justify-content: center;
    /* Horizontal centering */
    background: #f4f6f9;
    /* Light grey background typical of admin panels */
}

/* Centering Wrapper */
.login-wrapper {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; /* Clean grey background */
}

.login-card {
    width: 100%;
    min-width: 500px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: none;
}

/* Seal Styling */
.brand-seal-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}
.brand-seal {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.office-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #495057;
}