body {
    background-color: var(--light-gray) !important;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
header section {
    background-color: var(--bg-color);
    border-radius: 10px;
    width: 400px;
    padding: 10px 10px;
}
header section h1 {
    text-align: center;
    margin-block: 10px 20px;
}
header section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* header section form span {
    font-size: 14px;
    margin-left: 10px;
    color: red;
} */
header section form input {
    padding: 12px 18px;
}
header section form button {
    border-radius: 5px;
    margin-top: 10px;
}


@media (max-width: 1000px) {
    header {
        margin-top: 20%;
    }
    section {
        width: 80% !important;
    }
}