.form-flex {
    display: flex;
    justify-content: center; /* Horizontální centrování */
    align-items: center;     /* Vertikální centrování */
    width: 100%;
    height: 85vh;            /* Nastavení výšky na 100% výšky okna */
    background-color: #f4f4f4; /* Volitelně můžete přidat pozadí pro lepší vzhled */
}

.login-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.login-form button:hover {
    background-color:#4e5254;
}

.login-form .links {
    flex-direction: column;
    margin-top: 15px;
    font-size: 14px;
}

.login-form .links a {
    color: #3498db;
    text-decoration: none;
}

.login-form .links a:hover {
    text-decoration: underline;
}

.error-message {
    color: red;
    margin-bottom: 10px;
}