* {
    align-items: center;
    align-content: center;
    text-align: center;
    padding: 0;
}

h1 {
    font-size: 3rem;
}

ul {
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
    margin: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

#logout {
    color: red;
}

#login {
    color: limegreen;
}

#register {
    color: green;
}

#task-manager {
    color: blue;
}

.password-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.password-wrapper input {
    flex: 1;
}

.toggle-password {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.invalid-feedback {
    display: block;
}

.flashes .success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 0.75rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}
.flashes .danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.flashes .warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
.flashes .info, .flashes .message {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}