html,
body {
    height: 100vh;
}

/**************************** HEADER ****************************/

.navbar-custom img {
    height: 60px;
}

.navbar-custom .title {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--white-color);
    text-shadow: none !important;
    border-left: 1px solid var(--white-color);
}

.footer p {
    font-size: 1rem !important;
}

/**************************** GENERAL CONTAINER ****************************/
.form-container {
    scale: 1.01;
    transition: all 0.2s ease-in-out;
}

.form-container:hover {
    filter: drop-shadow(1px 1px 5px var(--dark-color));
    transform: scale(1.01);
    box-shadow: 0 0 10px var(--dark-color);
}

/**************************** COLUMNS ****************************/
.column-1 {
    border-top: 25px solid var(--primary-color);
    background-color: var(--dark-color);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.column-1 h2 {
    color: var(--primary-color);
    font-size: 2rem
}

.column-1 label {
    color: var(--white-color);
    font-size: 1rem
}

.column-1 input {
    border: none;
}

.column-2 img {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/**************************** INPUTS ****************************/
#password,
#email {
    border: 1px solid var(--primary-color);

    &:hover {
        transform: translateY(-1px);
        border-color: var(--primary-color) ! important;
        transition: all 0.2s ease-in-out;
        box-shadow: 0 0 10px var(--primary-color) ! important;
    }
}


/**************************** ACCESS BUTTON ****************************/

.access-btn {
    position: relative;
    border: none;
    background-color: var(--primary-color);
    color: var(--dark-color);
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
}

.access-btn i {
    margin-right: 15px;
}

.access-content {
    position: relative;
    z-index: 2;
}

.access-btn span {
    position: absolute;
    width: 100%;
    height: 95px;
    background-color: #9b783c80;
    top: -50%;
    left: -100%;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.access-btn:hover span {
    left: -0%;
}

.access-btn:hover {
    color: var(--white-color);
    box-shadow: 0 0 10px var(--primary-color) ! important;
    transform: translateY(-1px);
    border-color: var(--primary-color) ! important;
    transition: all 0.2s ease-in-out;
}

.access-btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    box-shadow: none !important;
}

.access-btn:disabled span {
    left: -100%;
}

.access-btn.is-loading {
    color: var(--white-color);
}


/**************************** RESPONSIVE ****************************/

@media (max-width: 768px) {
    .column-1 {
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
        min-width: 500px;
    }

    .column-2 {
        display: none;
    }

    .column-1 h2 {
        margin-top: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .form-container {
        scale: 0.90;
    }
}

@media (min-width: 1700px) {
    .form-container {
        scale: 1.0;
    }
}