.page.login {
    display: fixed;
    height: 100vh;
    width: 100vw;
    background-color: #7371ee;
    background-image: linear-gradient(60deg, #7371ee 1%, #a1d9d6 100%);    

    .landingpage {
        display: grid;
        width: 100vw;
        height: 100dvh;
        grid-template-columns: 1fr;
        grid-template-rows: 3fr 64px 64px 64px 1fr;
        grid-gap: 16px;
        place-items: center;

        & > div {
            display: grid;
            align-items: center;
            position: relative;
        }
    }

    & input {
        display: block;
        width: 80vw;
        height: 55px;
        padding-left: 24px;
        border: none;
        border-radius: 16px;
        box-sizing: border-box;
        font-size: 1em;
        position: relative;
        border: 2px solid transparent;        
    }

    & input.invalid {
        border: 2px solid red;        
    }    

    & button {
        width: 80vw;
        height: 55px;
        background-color: var(--main-bg-color);
        color: white;
        border: none;
        font-size: 1.1em;
        border-radius: 16px;
        cursor: pointer;     
    }

    & v-icon {
        width: 24px;
        position: absolute;
        right: 16px;
        color: var(--main-bg-color);
        align-self: center;
        cursor: pointer;
    }

}

