﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    font-family: Arial, sans-serif;
    height: 100vh;
    background-color: white;
}

h1, h2, h3, h4, h5 {
    font-weight: 500;
}

h3 {
    font-size: 24px;
}

h5 {
    font-size: 14px;
}

p, span, div, p, a {
    color: #444;
}

svg {
    fill: #444;
}

a {
    text-decoration: none;
}

input {
    filter: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 50px #FFF inset !important;
    content: "\feff";
}

input:-moz-autofill,
input:-moz-autofill:hover,
input:-moz-autofill:focus,
input:-moz-autofill:active {
    -moz-box-shadow: 0 0 0 50px #FFF inset !important;
    content: "\feff";
}

.container {
    display: flex;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.epilogue-logo {
    position: fixed;
    top: 0;
    bottom: 0;
    padding: 1.5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* Column (Medium screen, 6 columns out of 12) */
.col-md-6 {
    flex: 0 0 50%;
    /* Takes up 50% width */
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.login-section, .testimonial-section {
    width: 50%;
}

.login-section {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.login-section-h2 {
    font-family: Lato;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    text-underline-position: from-font;
}

.login-section-p {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    text-underline-position: from-font;
}

.email-label, .password-label {
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    color: #344054;
}

.label-error {
    color: #E32B2C;
}

.email-hidden {
    display: none;
}

.logo img {
    width: 31.5px;
    height: 40px;
    margin-bottom: 1rem;
}

.login-section h2 {
    margin-bottom: 0.5rem;
    font-size: 30px;
    color: #101828;
}

.login-section p {
    margin-bottom: 16px;
    color: #475467;
}

.form-container {
    display: inline-grid;
}

.form-container .error-msg {
    font-family: Lato;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    color: #d32f2f;
}

form label {
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

form input[type="email"],
form input[type="password"],
form input[type="text"] {
    width: 360px;
    height: 44px;
    padding: 10px 14px 10px 14px;
    gap: 8px;
    border-radius: 8px;
    border: 1px 0px 0px 0px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(208, 213, 221, 1);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

form input[type="email"]:focus,
form input[type="password"]:focus,
form input[type="text"]:focus {
    box-shadow: 0px 0px 0px 4px rgba(65, 16, 61, 0.24);
    border: 1px solid rgba(149, 114, 146, 1);
    outline: none;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 13.3px;
}

.link-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

button.sign-in-button {
    width: 360px;
    height: 44px;
    padding: 10px 16px 10px 16px;
    border-radius: 8px;
    border: 1px rgba(79, 20, 74, 1);
    background: rgba(79, 20, 74, 1);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    font-family: Lato;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-underline-position: from-font;
    color: rgba(255, 255, 255, 1);
    margin-top: 1.5rem;
}

button.sign-in-button:hover {
    background: rgba(65, 16, 61, 1);
    border-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

button.sign-in-button:focus {
    border: 1px solid rgba(79, 20, 74, 1);
    box-shadow: 0px 0px 0px 4px rgba(65, 16, 61, 0.24), 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

button.different-email {
    cursor: pointer;
    border: none !important;
    background-color: #FFF !important;
    outline: none !important;
    display: block;
    margin-top: 1rem;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    color: rgba(65, 16, 61, 1);
}

button.different-email:hover {
    border: none !important;
    background-color: none !important;
    outline: none !important;
    color: rgba(49, 12, 46, 1);
}

button.different-email:focus {
    border: none !important;
    background-color: none !important;
    outline: none !important;
    color: rgba(49, 12, 46, 1);
}

.forgot-password {
    display: block;
    margin-top: 1rem;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    color: rgba(65, 16, 61, 1);
}

.forgot-password:hover {
    color: rgba(49, 12, 46, 1);
}

button.link-button {
    background: none !important;
    border: none !important;
    padding: 0;
    cursor: pointer;
    display: block;
    margin-top: 1rem;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: right;
    text-underline-position: from-font;
    color: rgba(65, 16, 61, 1);
}

.p-1rem {
    padding: 1rem;
}

.login-section p {
    margin-bottom: 1.5rem;
    color: #666;
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.testimonial-section {
    display: flex;
    align-items: end;
    background: url('../testimonial-bg.svg');
    background-size: contain;
    background-position-y: center;
    background-position-x: right;
    background-repeat: no-repeat;
    width: 100%;
    height: 95vh;
    border-radius: 24px;
}

.testimonial {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.40) 100%);
    width: 100%;
    padding: 32px;
    gap: 32px;
    border: 1px 0px 0px 0px;
    backdrop-filter: blur(12px);
    border-radius: 24px;
}

.testimonial-comment {
    font-family: Lato;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    text-align: left;
    text-underline-position: from-font;
    color: rgba(255, 255, 255, 1);
}

.author-info {
    margin-top: 10px;
}

.author-info .col-md-6 {
    padding-left: 0px;
    padding-right: 0px;
}

.author-name {
    font-family: Lato;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.02em;
    text-align: left;
    text-underline-position: from-font;
    color: rgba(255, 255, 255, 1);
}

.author-designation {
    font-family: Lato;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    color: rgba(255, 255, 255, 1);
}

.author-company {
    font-family: Lato;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    color: rgba(255, 255, 255, 1);
}

.rating {
    text-align: end;
    color: rgba(255, 255, 255, 1);
    font-size: 30px;
}

.navigation {
    margin-top: 10px;
    text-align: end;
    color: rgba(255, 255, 255, 1);
}

.navigation button {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
    margin-left: 32px;
}

.page-panel {
    height: 100%;
    width: 100%;
    display: inline-table;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}

.content-page-panel {
    height: 100%;
    display: table;
    margin: auto;
}

.content-page-panel > div {
    display: table-cell;
    vertical-align: middle;
}

.content-page-panel .logo-cell {
    min-width: 310px;
    text-align: center;
}

.content-page-panel .logo-cell img {
    margin-right: 30px;
}

.content-page-panel .login-form-cell {
    width: 327px;
}

.content-page-panel .login-form {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    padding: 15px;
    margin-bottom: 20px;
    }

.invite-complete-content-page-panel {
    height: 100%;
    width: 100%;
    display: table;
    margin: auto;
}

.invite-complete-content-page-panel > div {
    display: table-cell;
    vertical-align: middle;
}

.invite-complete-content-page-panel .logo-cell {
    padding: 40px 80px;
}

.invite-complete-content-page-panel .logo-cell img {
    position: absolute;
    top: 40px;
}

.invite-complete-content-page-panel .logo-cell .big-title {
    color: #1F4E79;
    font-size: 50px;
    margin: 0 0 10px;
}

.invite-complete-content-page-panel .logo-cell h4 {
    font-size: 18px;
    margin: 10px 0;
}

.invite-complete-content-page-panel .login-form-cell {
    width: 35%;
    background-color: #fff;
}

.invite-complete-content-page-panel .login-form-cell .login-form {
    max-width: 400px;
    display: block;
    margin: auto;
}

.login-form .form-header {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.login-form .form-header .account-name {
    margin: 3px 0 0;
    font-size: 20px;
    text-transform: uppercase;
}

.login-form .static-error-notification {
    background-color: #ffe8e8;
    border: 1px solid #d8232b;
    padding: 10px;
    margin-bottom: 20px;
}

.login-form .form-group {
    display: inline-flex;
    width: 100%;
    padding: 10px 0 30px;
}

.login-form .form-group .input-underline {
    border-color: rgba(0,0,0,.12);
}

.login-form .form-group .input-underline {
    position: absolute;
    width: calc(100% - 10px);
    margin-top: -1px;
    border-top-width: 1px;
    border-top-style: solid;
}

.login-form .form-group > div {
    padding: 0;
}


.login-form .form-group .form-group-input-field {
    width: 100%;
    margin-left: 7.5px;
    position: relative;
}

.login-form .form-group .form-group-input-field-placeholder {
    position: absolute;
    font-family: Arial, serif;
    color: rgba(0, 0, 0, 0.38);
    font-weight: 700;
    left: 0;
    top: -16px;
    width: 100%;
    padding-top: 16px;
    overflow: hidden;
    line-height: 24px;
    pointer-events: none;
    transition: transform .4s cubic-bezier(.25,.8,.25,1),color .4s cubic-bezier(.25,.8,.25,1),width .4s cubic-bezier(.25,.8,.25,1);
    -webkit-transition: transform .4s cubic-bezier(.25,.8,.25,1),color .4s cubic-bezier(.25,.8,.25,1),width .4s cubic-bezier(.25,.8,.25,1);
}

.login-form .form-group .form-group-input-field-placeholder .placeholder-required {
    color: #444 !important;
}

.login-form .form-group .form-group-input-field .error-msg {
    color: black;
    font-family: Arial, serif;
    font-size: 45.5px;
    position: absolute;
    left: 0;
    top: 30px;
}

.login-form .form-group input[type="text"], .login-form .form-group input[type="password"] {
    border: none;
    outline: none;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    height: 24px;
    width: calc(100% - 10px);
}

.login-form .form-group .btn.btn-primary {
    border: none;
    outline: none;
    font-family: "Open Sans", sans-serif;
    line-height: 20px;
    border-radius: 25px;
    padding: 6px 12px;
    background-color: #ffcc00;
    color: #fff;
    font-size: 14px;
    min-width: 100px;
    min-height: 34px;
}

.login-form .form-group.form-group-button-field {
    display: block;
    overflow-y: hidden;
    padding-bottom: 20px;
}

.login-form .form-group.form-group-button-field .forget-password {
    float: left;
    padding: 6px 0;
    font-size: 14px;
}

.login-form .form-group.form-group-button-field button {
    float: right;
    margin-right: 10px;
    cursor: pointer;
}

.tenant-item {
    clear: both;
    padding: 20px;
    overflow-y: hidden;
    cursor: pointer;
    padding-right: 25px;
}

.tenant-item .tenant-item-logo {
    float: left;
    width: 100px;
    height: 40px;
    margin-top: 8px;
}

.tenant-item .tenant-item-logo img {
    width: 100%;
}

.tenant-item .tenant-item-info {
    float: right;
    width: calc(100% - 120px);
    margin-left: 20px;
}

.tenant-item .tenant-item-info .tenant-item-info-name-group {
    display: flex;
}

.tenant-item .tenant-item-info .tenant-item-info-name-group svg {
    height: 24px;
}


.tenant-item .tenant-item-info .tenant-item-info-name-group .tenant-item-tenancy {
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 24px;
}

.tenant-item .tenant-item-info .tenant-item-info-name-group ~ p {
    margin: 0;
    word-wrap: break-word;
}

.tenant-item .tenant-item-info .tenant-item-inactived-tenancy,
.tenant-item .tenant-item-info .tenant-item-default-tenancy {
    height: 24px;
    margin-left: 5px;
}

.tenant-item .tenant-item-info .tenant-item-default-tenancy svg {
    fill: #71d545;
}

.tenant-item .tenant-item-info .tenant-item-inactived-tenancy svg {
    fill: #e32b2c;
}

.tenant-item .tenant-item-info .error-message-deactived {
    color: #e32b2c;
    font-weight: 700;
}

.checkbox {
    clear: both;
    cursor: pointer;
    display: flex;
    margin: 0 25px 0 17px;
    height: 26px;
}

.checkbox > * {
    cursor: pointer;
}

.checkbox svg {
    height: 100%;
}

.checkbox label {
    line-height: 24px;
}

.checkbox .checkbox-is-set-default-tenant, .checkbox .checkbox-is-not-set-default-tenant {
    margin-right: 9px;
}

    .checkbox .checkbox-is-set-default-tenant > svg {
        fill: #ffcc00;
    }

    .checkbox .checkbox-is-not-set-default-tenant > svg {
        fill: #444;
    }

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal .modal-content {
    background-color: #fefefe;
    border-radius: 5px;
    border: 1px solid #888;
    width: 550px;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translateY(-50%, -50%);
    transform: translate(-50%, -50%);
}

.modal .modal-content .message-dialog {
    padding: 7.5px 17.5px 17.5px 17.5px;
    overflow-y: hidden;
    overflow-x: hidden;
}

.modal .modal-content p.title {
    font-family: 'Roboto', sans-serif;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.modal .modal-content span.message {
    font-family: 'Open Sans', sans-serif;
    color: rgb(128, 128, 128);
    font-size: 14px;
}

.modal .modal-content div.actions {
    text-align: right;
    margin-top: 20px;
}

.modal .modal-content .btn.btn-warning-type.btn-ok.mat-button {
    background-color: #ffc000;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 25px !important;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    user-select: none;
    outline: none;
    border: none;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: baseline;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 0;
    min-width: 88px;
    line-height: 36px;
    padding: 0 16px;
}
