*{box-sizing: border-box;}

.spacer
{
    height: 10px;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    box-sizing: border-box;
}

.notlogged-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.notlogged-container > form,.notlogged-container > div {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    text-align: center;

    width: 100%;
    max-width: 400px;
    margin-bottom: 200px;
}

.notlogged-container > form h1,.notlogged-container > div h1 {
    border-bottom: 2px solid #216bba;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333333;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #216bba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0e589a;
}

.signup-link {
    margin-top: 20px;
    color: #666666;
}

.signup-link a,.signup-link a:visited {
    color: #216bba;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

.alert
{
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;

    --text-color: #721c24;
    --text-background-color: #f8d7da;
    --text-border-color: #f5c6cb;

    color: var(--text-color);
    background-color: var(--text-background-color);
    border-color: var(--text-border-color);
}

.alert-danger
{

}