body {
    font-family: 'Roboto', 'Helvetica', sans-serif;
}

.login {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 100vh;
}

.login form {
    background-color: white;

    justify-content: center;

    border: 1px solid #e3e3e3;
    border-radius: 10px;

    min-width: 300px;
    max-width: 375px;
    min-height: 425px;

    padding: 40px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form h1 {
    font-family: 'TheSans', Helvetica, sans-serif;
    font-size: 1.5rem;
}

form a {
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.form-row-1 {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5px;
}

.form-row-multiple {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
input[type="password"],
select,
textarea {
    font-size: 0.875rem;

    background-color: #ffffff;
    color: black;
    border: 2px solid #e3e3e3;
    border-radius: 25px;
    outline: none;

    transition: box-shadow 0.3s;

    padding: 10px 15px;
}

input[type="file"] {
    padding: 7.8px 15px;
}

input::file-selector-button {
    font-size: 0.875rem;

    background-color: #ffffff;
    color: black;
    border: 2px solid #e3e3e3;
    border-radius: 25px;
    outline: none;
}

input:not([type="radio"], [type="checkbox"]):focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 3px 0 inset rgba(0, 0, 0, 0.25);
}

form div.center-image {
    display: flex;
    justify-content: center;
}

form button {
    all: unset;
    font-weight: bold;
    text-align: center;
    color: black;

    background-color: #25b6bb;
    border-radius: 25px;

    transition: background-color 0.3s;
    cursor: pointer;

    padding: 12px 24px;
}

.form-error {
    font-size: 0.75rem;
    color: #BA0000;
}