﻿body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: black;
    color: #333;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
}

.login-box {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px silver;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

    .login-box h2 {
        margin-bottom: 10px;
        color: #2a5298;
    }

    .login-box p {
        margin-bottom: 30px;
        font-size: 14px;
        color: #666;
    }

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
    }

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #2a5298;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    button[type="submit"]:hover {
        background-color: #1e3c72;
    }

.login-footer {
    margin-top: 20px;
    font-size: 13px;
}

    .login-footer a {
        color: #2a5298;
        text-decoration: none;
    }

        .login-footer a:hover {
            text-decoration: underline;
        }
