.auth-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    font-family: var(--primary-font);
}

.auth-box {
    display: flex;
    width: 95%;
    max-width: 450px;
    min-height: 450px;
    padding: 50px 1.5rem;
    margin: 0rem auto;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--theme-light-color);
    border-radius: var(--default-radius);
}

.auth-btn-google {
    display: flex;
    width: 100%;
    padding: .25rem;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--theme-dark-color);
    border-radius: var(--default-radius);
    color: var(--theme-dark-color);
    text-decoration: none;
}

.auth-btn-google img {
    width: 25px;
    height: 25px;
    margin-right: .5rem;
}

.auth-btn-google label {
    font-size: 16px;
    color: var(--theme-dark-color);
}

.auth-divider {
    position: relative;
    display: flex;
    width: 100%;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.auth-divider span {
    padding: 10px;
    color: var(--text-neutral-color);
    background-color: #fff;
}

.divider-line {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 1px;
    left: 0px;
    top: 49%;
    background-color: var(--text-neutral-color);
}

.auth-form {
    width: 100%;
    margin-top: 1rem;
}

.auth-group {
    display: flex;
    width: 100%;
    margin: 1rem 0px;
    flex-direction: column-reverse;
}

.auth-group.row {
    flex-direction: row;
}

.auth-input {
    padding: .5rem;
    border: none;
    border-bottom: 2px solid var(--theme-light-color);
    transition: .4s;
}

.auth-input:focus {
    outline: none;
    border-bottom: 2px solid var(--theme-color);
}

.auth-input:focus+.auth-label {
    color: var(--theme-color);
}

.auth-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-dark-color);
}

/* Feedback */
.invalid-feedback {
    margin: .25rem 0px;
    font-size: .8em;
    color: var(--danger-color);
}

.auth-input.is-invalid {
    border-bottom: 2px solid var(--danger-color);
}

.auth-buttons-wrapper {
    width: 100%;
    margin: 50px 0px 25px 0px;
    justify-content: space-between;
}

.auth-btn-active,
.auth-btn {
    display: flex;
    width: 49%;
    padding: .5rem;
    justify-content: center;
    align-items: center;
    border-radius: var(--default-radius);
    box-shadow: 0px 0px 15px rgba(90, 90, 120, .2);
    text-decoration: none;
    color: var(--theme-dark-color);
    border: none;
    font-family: var(--primary-font);
    font-size: 16px;
}

.auth-btn-active {
    background-color: var(--theme-color);
    color: #fff;
}

.auth-btn-active:hover {
    background-color: var(--theme-hover-color);
}

.auth-btn:hover {
    background-color: var(--theme-light-color);
}

.auth-link {
    margin-right: auto;
    text-decoration: underline;
    font-size: 14px;
}

.auth-bg {
    position: relative;
    display: flex;
    width: 95%;
    max-width: 450px;
    min-height: 350px;
    padding: 50px 1.5rem;
    margin: 0rem auto;
    align-items: flex-start;
    justify-content: center;
    background: var(--theme-gradient);
    border-radius: var(--default-radius);
}

.auth-bg-title {
    width: 80%;
    font-size: 26px;
    color: var(--theme-dark-color);
}

.auth-bg-image {
    position: absolute;
    bottom: 10px;
    left: 10%;
    width: 80%;
    filter: drop-shadow(0px 10px 10px rgba(90, 90, 90, .5));
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .auth-box {
        padding: 50px 2.5rem;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    .auth-container {
        justify-content: center;
        flex-direction: row;
    }

    .auth-box {
        width: 50%;
        max-width: 550px;
        margin: 0px;
        padding: 50px 60px;
    }

    .auth-bg {
        width: 50%;
        min-height: 450px;
        max-width: 550px;
        padding-top: 13%;
        margin: 0px;
    }

    .auth-bg-title {
        width: 80%;
        font-size: 32px;
        font-weight: 600;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}