#form-container {
    height: 100svh;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #eaeaea;
}

#form-container > div {
    background-color: #fff;
    width: 95%;

    padding: 2rem 1rem;

    border-radius: 0.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

h1 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;

    text-align: center;
}

form {
    margin-top: 20px;
}

form > input:not(:first-child) {
    margin-top: 10px;
}

form > input {
    padding: 0.5rem;

    border-bottom: 1px solid gray;
    border-radius: 0.25rem;
    width: 100%;
}

form > input::placeholder {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

form > input:focus-within {
    outline: none;
    border-bottom-color: #000;
}

form > div {
    color: gray;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form > div > div:first-child {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    align-items: center;
}

form > button[type="submit"] {
    margin-top: 20px;
    width: 100%;

    padding: 0.25rem;
    color: #fff;
    border-radius: 0.25rem;
    background-color: #dc2626;
}

#no-account {
    color: gray;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-top: 10px;
    text-align: center;
}

#no-account > span {
    color: #000;
    font-weight: 600;
}

/* RESPONSIVE */

@media (min-width: 425px) {
    #form-container > div {
        width: 400px;
    }
}
