.main-container {
    @media only screen and (min-width: 768px) {
        height: 100%;
    }
}

h1 {
    color: var(--text-white);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3.75rem;
}

.text-lg {
    color: var(--text-white); 
}

a {
    color: var(--text-white);
    text-decoration: underline;
}

.btn-link {
    color: var(--button-primary);
    text-decoration: none;
}

.btn-link:hover {
    color: var(--button-primary-hover);
}

.login-page-wrapper {
    height: 100dvh;
}

.left-column {
    background: linear-gradient(rgba(0, 57, 112, 0.70), rgba(0, 57, 112, 0.70)), url("../images/login-background.jpeg") center center no-repeat;
    background-size: cover;
    flex-basis: 50%;
    padding: 0 6rem;
}

.right-column {
    flex: 1 1 50%;
    max-width: 280px;
    justify-items: center;
}

.login-buttons {
    max-width: 280px;
    justify-items: center;
}

.right-column form {
    width: 100%;
}

.subtitle {
    color: hsla(215, 14%, 34%, 1);
}

@media only screen and (max-width: 1200px) {
    .left-column {
        order: 2;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    .right-column {
        padding-top: 6rem;
    }
}

@media only screen and (max-width: 768px) {
    .right-column form {
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .right-column {
        order: unset;
    }
}