/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .centered-logo {
        margin-top: 40px;
        width: 65%;
        padding-bottom: 16px;
        max-height: 40em;
    }

    .form {
        border: 1px solid lightgrey;
        background-color: white;
        padding: 20px;
        width: 100%;
        width: -moz-available;          /* WebKit-based browsers will ignore this. */
        width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
        width: fill-available;
    }

    .form-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .centered-logo {
        margin-top: 40px;
        width: 45%;
        padding-bottom: 16px;
        max-height: 40em;
    }

    .form {
        border: 1px solid lightgrey;
        background-color: white;
        padding: 20px;
        width: 70%;
    }

    .form-links {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .centered-logo {
        margin-top: 40px;
        width: 25%;
        padding-bottom: 16px;
        max-height: 40em;
        min-width: 300px;
    }

    .form {
        width: 50%;
        border: 1px solid lightgrey;
        background-color: white;
        border-radius: 4px;
        padding: 30px 60px 60px 60px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}
