﻿body {
    color: black;
}

.login-page .card {
    border-radius: 20px;
}

.login-layout-intro {
    font-size: 15px;
    margin-bottom: 10px;
    color: black;
}

.login-layout-info-box {
    background: #edffde;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
}

.login-layout-info-row {
    font-size: 15px;
    line-height: 2;
}

.login-layout-help-text {
    color: #505050;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0px;
}

.login-layout-alert-box {
    background: #fff8e6;
    border: 1px solid #ffe0a3;
    border-radius: 8px;
    color: #5f4b1b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 12px;
}

.login-layout-checkbox-label {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

    .login-layout-checkbox-label input {
        left: 0;
        position: absolute;
        top: 3px;
    }

.form-control {
    border-radius: 8px;
}

.field-validation-error {
    color: #ef0808;
}

.agreement-preview-link-icon {
    display: inline-block;
    font-weight: bold;
    margin-right: 4px;
}

.order-system-next-icon {
    display: inline-block;
    font-weight: bold;
    margin-left: 6px;
}

.agreement-preview-modal .modal-body {
    min-height: 75vh;
    position: relative;
}

.agreement-preview-modal .modal-dialog {
    max-width: 980px;
}

.agreement-preview-loader {
    align-items: center;
    background: #ffffff;
    bottom: 0;
    color: #505050;
    display: none;
    font-size: 15px;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

    .agreement-preview-loader.visible {
        display: flex;
    }

.agreement-preview-spinner {
    animation: agreement-preview-spin 0.8s linear infinite;
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    border-top-color: #2f97f6;
    display: inline-block;
    height: 28px;
    margin-right: 10px;
    width: 28px;
}

.agreement-preview-frame {
    border: 0;
    display: block;
    height: 75vh;
    width: 100%;
}

@keyframes agreement-preview-spin {
    to {
        transform: rotate(360deg);
    }
}
