﻿body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: whitesmoke;
}

h3 {
    font-family: 'Adagio Sans SemiBold';
    font-weight: bold;
}

h6 {
    font-family: 'Adagio Sans SemiBold';
    font-weight: bold;
}

.input-item {
    margin-bottom: -2rem;
    margin-top: -2em;
}

.form-group {
    margin-bottom: -1rem;
    margin-top: -1rem;
}

.toggle {
    background: none;
    border: none;
    color: gray;
    font-size: .9em;
    padding: 0.5em;
    position: absolute;
    right: 0.1em;
    z-index: 9;
}

.custom-field {
    position: relative;
    font-size: 14px;
    border-top: 20px solid transparent;
    margin-bottom: 5px;
    display: inline-block;
    --field-padding: 12px;
}

    .custom-field input {
        border: none;
        -webkit-appearance: none;
        -ms-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: #f2f2f2;
        padding: var(--field-padding);
        border-radius: 3px;
        width: 250px;
        outline: none;
        font-size: 14px;
    }

    .custom-field .placeholder {
        position: absolute;
        left: var(--field-padding);
        width: calc(100% - (var(--field-padding) * 2));
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        top: 22px;
        line-height: 100%;
        transform: translateY(-50%);
        color: #aaa;
        transition: top 0.3s ease, color 0.3s ease, font-size 0.3s ease;
    }

    .custom-field input.dirty + .placeholder,
    .custom-field input:focus + .placeholder,
    .custom-field input:not(:placeholder-shown) + .placeholder {
        top: -10px;
        font-size: 10px;
        color: #222;
    }

    .custom-field .error-message {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 0 8px;
        font-size: 12px;
        background: #d30909;
        color: #fff;
        height: 24px;
    }

        .custom-field .error-message:empty {
            opacity: 0;
        }

button:focus {
    outline: 0;
}

.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-form-box {
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px 30px 30px 30px;
    width: 650px;
    height: 430px;
    border-radius: 5px;
}

.login-form-header {
    margin-bottom: 40px;
}

    .login-form-header h2 {
        font-size: 26px;
        font-weight: 700;
        font-family: Arial, Helvetica, sans-serif;
    }

    .login-form-header p {
        font-size: 18px;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 0;
    }

        .login-form-header p a {
            text-decoration: none;
            color: #0e74bd;
        }

.input-item {
    margin-bottom: 20px;
}

    .input-item input {
        width: calc(100% - 30px);
        padding: 16px;
        border-radius: 5px;
        border: 1px solid #787878;
    }

button {
    margin-top: 5px;
    background-color: #0e74bd;
    border: none;
    color: #fff;
    padding: 12px 40px;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.input-group-append {
    margin-left: 15.6rem;
    margin-top: -29px;
    margin-bottom: 6px;
    border: 0px;
    background-color: transparent !important;
    z-index: 999;
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 0rem;
    z-index: 999;
}

/* Remove border color */
.input-group-append .input-group-text {
    border-color: transparent !important;
}
/*CheckBox*/
.checkboxes {
    width: 10px;
    height: 10px;
    max-width: 400px;
    min-width: 10px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.checkboxes__row {
    display: flex;
}

    .checkboxes__row:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

.checkboxes__item {
    padding: 14px 65px;
    width: 50%;
}

.checkbox.style-c {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .checkbox.style-c input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

        .checkbox.style-c input:checked ~ .checkbox__checkmark {
            background-color: #0039A6;
        }

            .checkbox.style-c input:checked ~ .checkbox__checkmark:after {
                opacity: 1;
            }

    .checkbox.style-c:hover input ~ .checkbox__checkmark {
        background-color: #eee;
    }

    .checkbox.style-c:hover input:checked ~ .checkbox__checkmark {
        background-color: #0039A6;
    }

    .checkbox.style-c .checkbox__checkmark {
        position: absolute;
        top: 2px;
        left: 0;
        height: 15px;
        width: 15px;
        background-color: #D3D3D3;
        transition: background-color 0.25s ease;
        border-radius: 4px;
    }

        .checkbox.style-c .checkbox__checkmark:after {
            content: "";
            position: absolute;
            left: 5px;
            top: 1px;
            width: 5px;
            height: 10px;
            border: solid #f2f2f2;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

    .checkbox.style-c .checkbox__body {
        color: #333;
        line-height: 1.4;
        font-size: 12px;
    }
/* TWO */
.custom-field.two {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

    .custom-field.two input {
        border-radius: 0px;
        border: 0px;
        border-width: 0px;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        background: linear-gradient(90deg, #0039A6, #0039A6) center bottom/0 0.15em no-repeat, linear-gradient(90deg, #D3D3D3, #D3D3D3) left bottom/100% 0.15em no-repeat, linear-gradient(90deg, #fff, #fff) left bottom/100% no-repeat;
        transition: background-size 0.3s ease;
        outline: none;
        font-size: 14px;
        font-variant-position: unset;
        text-align: left;
        padding-top: 10px;
        cursor: text;
        padding-bottom: 6px;
        padding-inline-start: 0.7em;
        width: 50%;
    }

        .custom-field.two input.dirty,
        .custom-field.two input:not(:placeholder-shown),
        .custom-field.two input:focus,
        .custom-field.two input:focus-visible {
            background-color: #f5f5f5;
            background-size: 100% 0.15em, 100% 3.1em, 100%;
            border: 0px;
            outline: none;
            box-shadow: none;
        }

.login-with-Cpa-btn {
    transition: background-color .3s, box-shadow .3s;
    padding: 6px 23%;
    border: none;
    border-radius: 5px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: initial;
    background-color: #0039A6;
    background-repeat: space;
    background-position: 14px 11px;
}

    .login-with-Cpa-btn button:active {
        background-color: #eeeeee;
    }

    .login-with-Cpa-btn button:focus {
        outline: none;
        box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25), 0 0 0 3px #c8dafc;
    }

    .login-with-Cpa-btn button:disabled {
        filter: grayscale(100%);
        background-color: #ebebeb;
        box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
        cursor: not-allowed;
    }

.col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 100%;
}

input:-internal-autofill-selected {
    background-color: #f5f5f5;
    color: #222;
    border: 1px solid #0039A6;
}

input[type="email" i] {
    padding-block: 1px;
    padding-inline: 2px;
}

input:not([type="file" i], [type="image" i], [type="checkbox" i], [type="radio" i]) {
}
