* {
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 1px;
}

body {
    margin: 0
}

main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("/img/_16956857-c8d0-4e79-86bb-83e4328048d4.jpg");
}
.alert{
    width: 100%;
    padding: 1em;
    background-color: rgb(192, 88, 88);
    color: #eee;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1.5em;
}

section {

    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    backdrop-filter: blur(5px);
    background-color: #417fa849;

    & small {
        position: absolute;
        bottom: 0;
    }
}

& h2 {
    color: #eee
}

& form {
    padding: 1em;
    width: 70%;
    gap: .4em;
    height: 30%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
    padding: 1em;


    & label {
        color: #eee
    }

    & span {
        gap: .4rem;
        width: 100%;
        display: flex;
        flex-direction: column;

        & input {
            padding: .7rem;
            background-color: #aebfbf94;
            border-radius: 5px;
            border: 1px solid #2b539e;
        }
    }

    & button {
        width: 50%;
        box-shadow: 1px 1px 1em #eee;
        background: #254e99;
        border-radius: 2px;
        padding: .7rem .5rem;
        color: #eee;
        cursor: pointer;
        border: 1px solid #2b539e;
        text-transform: uppercase
    }

    & button:active {
        transform: scale(.9)
    }

    & button:hover {
        background-color: #133575
    }
}

@media only screen and (max-width: 750px) {
    main {
        position: absolute;
        inset: 0;
        height: auto;
    }

    section {
        width: 100%;
        height: auto;


        small {
            position: relative
        }
    }
}