.auth-container {
    width: 100%;
    height: 100vh;
    display: flex;
    background-color: #FFF;
    overflow-y: hidden;
}

.auth-left {
    width: 50%;
}

.auth-right {
    width: 50%;
}

.left-heading {
    padding: 32px 64px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 128px);
}

.auth-logo {
    width: 200px;
    height: 50px;
    margin-right: 8px;
}

.logo-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #142858;
}

.form-container {
    width: calc(100% - 264px);
    padding-left: 132px;
    padding-right: 132px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 115px);
    justify-content: space-between;
}

.auth-header {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    color: #142858;
    margin-bottom: 8px;
}

.auth-form-subtext {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: #4F4F4F;
}

.social-buttons-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}

.social-button {
    padding: 12px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #DBDBDB;
    background: #FFF;
    width: 40%;
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05), 0 1px 0 -1px rgba(0, 0, 0, 0.05);
}

.social-button img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.form-divider {
    margin-bottom: 28px;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 8px;
    color: #142858;
}

.form-input {
    padding: 10px 16px;
    border-radius: 8px;
    outline: none;
    border: 1px solid #DBDBDB;
    background: #FFF;
    min-height: 19px;
    box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05), 0 1px 0 -1px rgba(0, 0, 0, 0.05);
}

.form-input::placeholder {
    color: #A5A5A5;
}

.auth-button {
    border-radius: 8px;
    display: flex;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
}

.login-hint {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: #142858;
}
.login-hint a {
    color: #3B82F6;
    margin-bottom: 40px;
}
.copyright {
    color: #4F4F4F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    display: flex;
    justify-content: center;
}

.info-container {
    width: calc(100% - 96px);
    padding-left: 96px !important;
    background-color: #FBFBFB;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
}
.info-container .auth-header{
    max-width: 86%;
    margin-bottom: 12px;
}
.info-container .auth-form-subtext{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #142858;
}
.info-text-container {
    display: flex;
    flex-direction: column;
    margin-left: 14%;
    margin-top: 60px;
}
.info-image {
    width: 86%
}
.invalid-feedback {
    width: 100%;
    margin-top: .75rem;
    font-size: .875em;
    color: red;
}
.border-0 {
    border: 0;
}