﻿.login-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #c9cdcf; /* override default application (text) color */
}

.header {
    background: linear-gradient(to right, #071326, #0e274d);
    color: #ced2d8;
    text-align: left;
    padding: 25px;
    padding-bottom: 100px;
}

.login-logo {
    height: 30px;
}

.mid-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #1a1a1a; /* [r7] $spx-color-black-500 .9 */
}

.login-panel {
    max-width: 360px;
    width: 100%;
    text-align: center;
    background-color: white;
    border-radius: 8px;
}

.login-header h1 {
    margin-bottom: 4rem;
    font-size: 1.5rem;
    font-weight: 100;
    font-size: 1.7em;
    color: #808080; /* [r7] $spx-color-black-500 .5 */
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    text-align: left;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
    }

.form-control {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* Button */
.btn-login {
    width: 100%;
    padding: 0.75rem;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}

/* Footer section */
.footer {
    background-color: #071326;
    display: flex;
    justify-content: stretch;
    padding: 1rem 2rem;
    font-size: 0.875rem;
}

.footer-section {
    margin: 20px;
}

    .footer-section strong {
        display: block;
        margin-bottom: 4px;
    }

    .footer-section a {
        color: #a2cfff;
        text-decoration: none;
    }

        .footer-section a:hover {
            text-decoration: underline;
        }

.error-message {
    color: red;
}

.alert {
    display: flex;
    align-items: center;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    color: #856404;
    font-size: 14px;
}

.alert-icon {
    flex-shrink: 0;
    margin-right: 10px;
}

    .alert-icon:before {
        content: "⚠️";
        font-size: 20px;
    }
