﻿body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f0f2f5;
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    color: #1c1e21;
    font-weight: 700;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.subtitle {
    color: #606770;
    font-size: 1rem;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

    /* === THIS IS THE UPDATED STYLE BLOCK === */
    .input-group label {
        display: block; /* This forces the label onto its own line */
        margin-bottom: 8px; /* This adds a nice space below the label */
        font-weight: 600;
        color: #4b4f56;
    }

.form-control {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

    .form-control:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

.options {
    text-align: left;
    margin-bottom: 20px;
}

    .options a {
        color: #007bff;
        text-decoration: none;
        font-size: 0.9rem;
    }

        .options a:hover {
            text-decoration: underline;
        }

.btn-login {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-login:hover {
        background-color: #0056b3;
    }

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
}

.login-error {
    margin-top: 15px;
    font-weight: 600;
}

.login-footer {
    margin-top: 25px;
    color: #8a8d91;
    font-size: 0.9rem;
}
