/* body > *:not(header) {
    padding-left: 10px;
    padding-right: 10px;
} */


input {
    display: block;
    margin-bottom: 5px;
}

.error {
    color: red;
    margin-top: 5px;
    text-align: center;
}

form a {
    color: inherit;
}

form {
    max-width: 500px;
    padding: 40px;
    margin: 20px;

    border: 1px solid lightgray;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.281);
}

form h1 {
    margin-bottom: 20px;
}

label {
    color: black;
}

input {
    background-color: rgb(233, 233, 233);
    border: none;
    outline: none;

    font-family: "Poppins";
    padding: 5px 10px 5px 10px;
    
    width: 100%;
    height: 2.5rem;

    margin-bottom: 20px;
    margin-top: 5px;

    border-radius: 3px;

    box-sizing: border-box;
}

input[type="submit"] {
    margin-top: 30px;

    background-color: #333333;
    color: white;
    cursor: pointer;
}

.alternative-method {
    margin-top: 40px;
    color: rgb(66, 66, 66);
    text-align: center;
}