﻿body {
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    position: center;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-container {
    max-width: 300px;
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
}

    .login-container label {
        font-weight: bold;
    }

    .login-container input {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .login-container button {
        width: 100%;
        padding: 10px;
        background-color: #28a745;
        border-color: #28a745;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        color: floralwhite;
    }

        .login-container button:hover {
            background-color: #17803f;
        }

span {
    color: red;
}
