﻿.auth-fluid {
    display: flex;
    height: 100vh;
    width: 100%;
}

.auth-fluid-form-box {
    background: white;
    width: 35%;
    padding: 2rem;
}

.auth-fluid-right {
    width: 65%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.auth-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-title {
    font-size: 32px;
    font-weight: bold;
}

.logo-subtitle {
    font-size: 16px;
    color: #727cf5;
    text-align: right;
    justify-content: right !important;
}

.footer-alt {
    text-align: left;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.allign-bottom {
    margin-bottom: 0 !important;
}

#roundedEdge {
    border-radius: 0.5rem;
}


@media (max-width: 768px) {
    .auth-fluid {
        flex-direction: column;
    }

    .auth-fluid-form-box,
    .auth-fluid-right {
        width: 100%;
        padding: 1rem;
        position: static;
    }

    .vertical-center {
        position: static;
        transform: none;
    }
}