body{
    display: flex;
    align-items: center;
    flex-direction: column;
    align-content: space-around;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    justify-content: flex-start;
    height: 100vh;
    margin: 0;
}

.loginForm{
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    align-items: center;
}

.nadpisLogin{
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Style the labels */
label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

/* Style the input fields */
.inputLogin{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

/* Style the button */
.loginButton {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.loginButton:hover {
    background-color: #218838;
}

/* Add some focus styles to input fields */
input:focus {
    border-color: #007bff;
    outline: none;
}

.registerText{
    margin-top: 5px;
    width: 100%;
    text-align: center;
    color: #555;
}

.registerText a:visited {
    color: #555;
}
