.login__page {
    display: flex;
    height: 80dvh;
    width: 100%;
    position: relative;
  border-radius: 12px;
}

.login_header {
    width: 160px;
}

.login__wrapper {
    width: 100%;
    height: 100%;
    padding: 10rem 6rem 10rem 6rem;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 2rem;
}

.login__container {
    width: 100%;
}

.splash__wrapper {
    width: 100%;
    height: 100%;
    padding: 8rem;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login__links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login__links > a:hover {
    color: var(--main-color);
}

.app-links {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.app-icons img {
    width: 150px;
}

/* Signup */

.container__signup {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 1rem 2rem 1rem;
    border-radius: 12px;

    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

@media screen and (max-width: 960px) {
    .login__page {
        flex-direction: column;
        height: 100dvh;
        width: 100%;
    }
    .login__wrapper {
        padding: 2rem 1rem 2rem 1rem;
    }
    .splash__wrapper {
        padding: unset;
    }
}

/* Modals */

#closeModal {
    margin-left: auto;
    color: white;
}

#closeModal:hover {
    background-color: red;
}