/* ======================================================
BASIC STYLES
====================================================== */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 100%;
}

h1,
h2,
h3,
h4 {
    text-transform: capitalize;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2rem;
}

p {
    font-size: 1.25rem;
    line-height: 150%;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: #3f46f6;
}

a:hover {
    text-decoration: underline;
}

a.btn-link {
    background: #3f46f6;
    color: #ffffff;
    display: block;
    width: 150px;
    margin: 1rem auto;
    padding: 15px;
    border-radius: 5px;
}

a.btn-link:hover {
    text-decoration: none;
}

img {}

.align-center {
    text-align: center;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bold {
    font-weight: bold;
}

/* ======================================================
CONTAINER STYLES
====================================================== */

header {
    width: 100%;
    background: #ffffff;
    padding: 1rem;
}

main {
    width: 100%;
    flex: 1;
}

footer.footer-info-pg {
    width: 100%;
    padding: 1rem;
    background: #f7f7f7;
    color: #6e6e73;
}

section {
    width: 100%;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

section.standard {
    max-width: 1024px;
    margin: 0 auto;
}

section.wide {
    max-width: 1500px;
    margin: 0 auto;
}

.msg-sys {
    font-size: 1rem;
}

.msg-sys.error {
    color: red;
}

.msg-sys.ok {
    color: #3f46f6;
}

/* ===================
HEADER
=================== */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.header-container .header-logo {
    margin-right: 2.5rem;
}

.header-container .header-logo .app-logo {
    max-width: 170px;
}

.header-container .header-menu-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.header-menu {
    display: flex;
    align-items: center;
}

ul.header-menu li {
    margin-right: 1rem;
}

ul.header-menu li:last-of-type {
    margin-right: 0;
}

ul.header-menu li a {}

.login-button {
    border: 2px solid #3f46f6;
    font-weight: 900;
    font-size: 0.9375rem;
    line-height: 1.125rem;
    text-align: center;
    color: #3f46f6;
    background-color: white;
    transition: all 0.3s ease 0s;
    padding: 10px 15px;
    border-radius: 5px;
}

/* ===================
FOOTER
=================== */
.footer-container {
    max-width: 1200px;
    padding: 2rem 0 1.5rem 0;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 3rem;
}

.footer-extra {
    width: 50%;
    margin-right: 1rem;
}

.footer-legal {
    width: 45%;
}

.footer-legal .disclaimer {
    font-size: 14px;
    line-height: 145%;
}

.footer-menu-wrapper {
    padding-bottom: 1.5rem;
}

ul.footer-menu {
    display: flex;
    flex-wrap: wrap;
}

ul.footer-menu li {
    margin-right: 1.5rem;
}

ul.footer-menu li:last-of-type {
    margin-right: 0;
}

ul.footer-menu li a {
    color: #ffffff;
}

.partners-wrapper {
    padding-bottom: 1.5rem;
}

.footer-section-title {
    margin-bottom: 0;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

ul.footer-parters {
    display: flex;
    flex-wrap: wrap;
}

.partners-wrapper li {
    margin-right: 2rem;
}

.partners-wrapper li:last-of-type {
    margin-right: 0;
}

.partners-wrapper img {
    max-width: 110px;
}

.footer-social {
    width: 100%;
}

ul.footer-social-links {
    display: flex;
    align-items: center;
    font-size: 25px;
}

ul.footer-social-links li {
    margin-right: 1.5rem;
}

ul.footer-social-links li:last-of-type {
    margin-right: 0;
}

ul.footer-social-links li a {
    color: #ffffff;
}

.copyright-row {
    font-size: 12px;
    color: #414141;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #999;
}

.copyright {
    margin-right: 1.5rem;
}

.footer-contact {
    margin-right: 1.5rem;
}

.footer-contact span {
    margin-right: 1rem;
}

.footer-contact span:last-of-type {
    margin-right: 0;
}

.footer-address {
    line-height: 145%;
}

footer .disclaimer p {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 120%;
}

/* ======================================================
FORM STYLES
====================================================== */

input[type="text"],
input[type="password"],
input[type="number"] {
    width: 100%;
    border: 1px solid #717171;
    border-radius: 5px;
    padding: 8px 10px;
    outline: 0;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
    border-bottom-color: #3f46f6;
}

input.error {
    border-color: red;
}

select {
    width: 100%;
    border: 1px solid #717171;
    border-radius: 5px;
    padding: 8px 8px;
    outline: 0;
}

select:focus {
    border-bottom-color: #3f46f6;
}

select.error {
    border-color: red;
}

button,
input[type="submit"] {
    border: 1px solid #717171;
    padding: 10px 15px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-row-with-icon {
    border: 1px solid #717171;
    border-radius: 5px;
    padding: 10px 0;
    margin-bottom: 1.5rem;
}

.form-row-with-icon i {
    font-size: 18px;
    padding: 10px 0 10px 10px;
}

.form-row-with-icon input {
    border-color: transparent;
    border-radius: 0;
}

.form-row-with-icon input:focus {
    border-color: transparent;
}

.form-row-with-icon:focus-within {
    border-color: #3f46f6;
}

.form-row-with-icon:focus-within i {
    color: #3f46f6;
}

/* ======================================================
PAGE STYLES
====================================================== */

/* HOME */
section.section-home-hero {
    display: flex;
    align-items: center;
    background: #3f46f6;
    color: #ffffff;
    min-height: 500px;
    padding: 5rem 1rem;
    flex-wrap: wrap;
}

section.section-home-hero .hero-copy {
    max-width: 700px;
    margin: 0 auto;
}

section.section-home-hero .hero-text {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* PUBLIC PAGES */

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

.public-title-text {
    font-size: 2.5rem;
}

.public-small-text {
    font-size: 0.85rem;
}

/* LOGIN */
section.section-login {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.login-container-left {
    width: 45%;
    background: #3f46f6;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container-right {
    width: 55%;
    padding: 1rem;
}

.login-form-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.form-login input[type="text"],
.form-login input[type="password"] {
    font-size: 18px;
    width: 90%;
}

.form-login input[type="submit"] {
    width: 100%;
    background: #3f46f6;
    color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ffffff;
    font-size: 18px;
    cursor: pointer;
}

.login-container-right h1 {
    font-size: 28px;
    font-weight: 600;
    color: #3f46f6;
    margin-bottom: 1.5rem;
}

.login-container-right p {
    font-size: 1rem;
}

/* USER ACTIVATION */
.section-activation {
    max-width: 550px;
    padding: 4rem 1rem;
    margin: 0 auto;
}

.pwd-rules li {
    padding-bottom: 1rem;
}

.pwd-rules li.ok {
    color: green;
}

.pwd-rules li.error {
    color: red;
}

/* PASSWORD RESET */
.section-pwd-reset {
    max-width: 550px;
    padding: 4rem 1rem;
    margin: 0 auto;
}

/* Zoom Auth */
.zoom-auth-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.zoom-auth-container p {
    margin-bottom: 0px;
}

/* ======================================================
AR MODAL AND LOADER
====================================================== */
.ar-modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 1rem;
    border: 1px solid #717171;
    border-radius: 5px;
    box-shadow: 2px 2px 5px 2px #ddd;
}

.ar-modal-container {
    max-height: 85vh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.ar-modal-container::-webkit-scrollbar {
    display: none;
}

.ar-modal-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}

.ar-modal-title-bar .ar-modal-title-bar-text {
    font-weight: 600;
}

.ar-modal-title-bar .ar-modal-btn-close {
    padding-left: 10px;
    cursor: pointer;
}

.ar-modal-title {
    font-size: 18px;
    font-weight: 600;
    padding: 0 0 1rem 0;
}

.ar-modal-container p {
    font-size: 1rem;
}

.system-msg-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 18px;
    border: 1px solid #717171;
    border-radius: 10px;
    box-shadow: 2px 1px 5px 1px #cccccc;
    z-index: 9999;
}

.system-msg-content {
    padding: 1rem 0;
}

.system-msg-option {
    text-align: center;
    padding-top: 10px;
}

.system-msg-modal p {
    font-size: 1rem;
}

.system-msg-overlay {
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(40, 40, 40, 0.7);
    background: transparent;
    padding: 18px;
    z-index: 9999;
    border-radius: 10px;
}

.system-msg-overlay span {
    color: #ffffff;
}

.app-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /*background: rgba(40, 40, 40, 0.6);*/
    background: transparent;
    padding: 18px;
    z-index: 99999;
    border-radius: 10px;
    font-size: 18px;
}

.app-loader-wrapper {
    /* color: #fff; */
    color: #3f46f6;
    display: flex;
    align-items: center;
}

.app-loader-wrapper .rotate {
    animation: app-loading 3s linear infinite;
}

@keyframes app-loading {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.app-loader-wrapper .app-loader-text {
    padding-left: 12px;
}

.app-loader-icon {
    font-size: 20px;
}

.app-loader-wrapper span {
    padding-left: 10px;
    letter-spacing: 0.5px;
}