﻿/*body, html {
    height: 100%;
    margin: 0;
    background: #f0f2f5;
    font-family: 'Segoe UI', sans-serif;
}

.login-container {
    width: 100%;
    max-width: 400px;
    margin: 100px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.login-button {
    background: #0078D7;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

    .login-button:hover {
        background: #005fa3;
    }

.error-message {
    color: red;
    margin-top: 10px;
}
*/
/* fills the viewport height, hides any overflow */
.login-page {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
    background: url('/images/bg-auth-overlay.png') center/cover no-repeat;
}

/* then let the inner .container scroll if it ever overflows,
     or remove margin-top since we’re centering by flex */
.login-page .container {
    margin-top: 0 !important;
}
