/* Django messages */
.messages {
    margin-bottom: 20px;
}

.alert {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-weight: 500;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

.alert-warning {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
}

.alert-success {
    background-color: #dcfce7;
    border: 1px solid #22c55e;
    color: #166534;
}



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

.centered_logo {
    max-width: 100%;
    height: auto;
}
.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}
.space_between {
    justify-content: space-between;
}

/* Classes for validation buttons (Warning: this is an id) */
#submitButton {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#submitButton:hover {
    background-color: #0056b3;
}
.button-hidden {
    display: none !important;
}
