
#login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#login h1 {
    text-align: center;
    color: var(--primary-color);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    color: var(--primary-color);
    font-weight: 600;
}

input {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}


.error-message {
    color: red;
    text-align: center;
}

.success-message{
    color: var(--primary-color);
    text-align: center;
}