﻿.body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #1c2a53;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 350px;
}

    .login-container h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #333333;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 5px;
        color: #444444;
    }

    .form-group input[type="text"],
    .form-group input[type="password"] {
        width: 100%;
        padding: 10px;
        border: 1px solid #cccccc;
        border-radius: 6px;
        font-size: 14px;
    }

        .form-group input[type="text"]:focus,
        .form-group input[type="password"]:focus {
            border-color: olive;
            outline: none;
        }

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: olive;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .login-btn:hover {
        background-color: darkolivegreen;
    }

.error-label {
    color: red;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
}

.logo {
    width: 90px;
    height: 90px;
    text-align: center;
}
