:root {
    --forny-p1: 0.25rem; /* 4px */
    --forny-p2: 0.5rem; /* 8px */
    --forny-p3: 0.75rem; /* 12px */
    --forny-p4: 1rem; /* 16px */
    --forny-p5: 1.25rem; /* 20px */
    --forny-p6: 1.5rem; /* 24px */
    --forny-p8: 2rem; /* 32px */
    --forny-p10: 2.5rem; /* 40px */
    --forny-text-xs: 0.75rem; /* 12px */
    --forny-text-sm: 0.875rem; /* 12px */
    --forny-text-md: 1rem; /* 16px */
    --forny-form-width: 26rem;
    --forny-color-facebook: hsla(221, 40%, 47%, 1);
    --forny-color-google: hsla(4, 69%, 53%, 1);
    --forny-color-twitter: hsla(195, 100%, 60%, 1);
    --forny-form-control-border: 1px solid red;
    --forny-form-control-padding: 4px;
    --forny-shadow-color: black;
    --forny-shadow: 0 3px 6px var(--forny-shadow-color);

    --forny-red-100: hsla(0, 100%, 94%, 1);
    --forny-red-500: hsla(4, 69%, 53%, 1);

    --forny-danger-100: hsla(0, 100%, 94%, 1);
    --forny-danger-500: hsla(4, 69%, 53%, 1);

    --forny-color-success-100: hsla(152, 68%, 96%, 1);
    --forny-color-text: black;
    --forny-color-header: var(--forny-color-text);

    --forny-color-accent-500: red;
}

@media (min-width: 768px) {
    .forny-form {
        width: 530px !important;
    }
}

label.error {
    color: red;
    font-size: 14px;
}


h2.title {
    font-family: "Poppins";
    font-weight: bold;
}

h3.version {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 14px;
}

.form-group label {
    font-family: "Poppins";
    font-weight: bold;
    font-size: 16px;
}

.form-group .form-control {
    height: 3.5rem !important;
    padding: 10px 25px !important;
    border-radius: 5px !important;
    font-family: "Poppins";
    border: 1px solid #dee2e6 !important;
}

.forny-form .form-group .input-group {
    border-radius: 7px !important;

}

.input-group-text i {
    cursor: pointer;
}

.toggle-visibility-password, .input-group-text i:hover {
    color: #74668c !important;
}


@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}

@keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}

.loader {
    position: relative;
    margin: 0 auto;
    width: 50px;
}

.loader:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.loader-specific {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: inherit;
    z-index: 20 !important;
}

.loader-specific-back {
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: calc(50% - 22px);
    left: calc(50% - 22px);
    height: 44px;
    width: 44px;
    padding: 8px !important;
    border-radius: 5px !important;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4) !important;
}

.circular-specific {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

.forny-container .text-xs {
    font-size: 0.75rem;
    font-size: var(--forny-text-xs);
}

.logo-fixed {
    height: 0;
}

.logo-fixed .company {
    top: 10px;
    position: relative;
    left: 10px;
    width: 150px;
    display: block;
}

.forny-container .text-sm {
    font-size: 0.875rem;
    font-size: var(--forny-text-sm);
}

.forny-container .text-md {
    font-size: 1rem;
    font-size: var(--forny-text-md);
}

.forny-container .cursor-pointer {
    cursor: pointer;
}

.forny-container .pt-1 {
    padding-top: 0.25rem !important;
    padding-top: var(--forny-p1) !important;
}

.forny-container .pt-2 {
    padding-top: 0.5rem !important;
    padding-top: var(--forny-p2) !important;
}

.forny-container .pt-4 {
    padding-top: 1rem !important;
    padding-top: var(--forny-p4) !important;
}

.forny-container .pt-10 {
    padding-top: 2.5rem !important;
    padding-top: var(--forny-p10) !important;
}

.forny-container .pb-1 {
    padding-bottom: 0.25rem !important;
    padding-bottom: var(--forny-p1) !important;
}

.forny-container .pb-2 {
    padding-bottom: 0.5rem !important;
    padding-bottom: var(--forny-p2) !important;
}

.forny-container .pb-4 {
    padding-bottom: 1rem !important;
    padding-bottom: var(--forny-p4) !important;
}

.forny-container .pb-10 {
    padding-bottom: 2.5rem !important;
    padding-bottom: var(--forny-p10) !important;
}

.forny-container .mr-1 {
    margin-right: 0.25rem !important;
    margin-right: var(--forny-p1) !important;
}

.forny-container .mr-2 {
    margin-right: 0.5rem !important;
    margin-right: var(--forny-p2) !important;
}

.forny-container .mr-4 {
    margin-right: 1rem !important;
    margin-right: var(--forny-p4) !important;
}

.forny-container .mr-6 {
    margin-right: 1.5rem !important;
    margin-right: var(--forny-p6) !important;
}

.forny-container .mr-10 {
    margin-right: 2.5rem !important;
    margin-right: var(--forny-p10) !important;
}

.forny-container .mb-1 {
    margin-bottom: 0.25rem !important;
    margin-bottom: var(--forny-p1) !important;
}

.forny-container .mb-2 {
    margin-bottom: 0.5rem !important;
    margin-bottom: var(--forny-p2) !important;
}

.forny-container .mb-4 {
    margin-bottom: 1rem !important;
    margin-bottom: var(--forny-p4) !important;
}

.forny-container .mb-5 {
    margin-bottom: 1.25rem !important;
    margin-bottom: var(--forny-p5) !important;
}

.forny-container .mb-6 {
    margin-bottom: 1.5rem !important;
    margin-bottom: var(--forny-p6) !important;
}

.forny-container .mb-8 {
    margin-bottom: 2rem !important;
    margin-bottom: var(--forny-p8) !important;
}

.forny-container .mb-10 {
    margin-bottom: 2.5rem !important;
    margin-bottom: var(--forny-p10) !important;
}

.forny-container .mt-1 {
    margin-top: 0.25rem !important;
    margin-top: var(--forny-p1) !important;
}

.forny-container .mt-2 {
    margin-top: 0.5rem !important;
    margin-top: var(--forny-p2) !important;
}

.forny-container .mt-4 {
    margin-top: 1rem !important;
    margin-top: var(--forny-p4) !important;
}

.forny-container .mt-5 {
    margin-top: 1.25rem !important;
    margin-top: var(--forny-p5) !important;
}

.forny-container .mt-6 {
    margin-top: 1.5rem !important;
    margin-top: var(--forny-p6) !important;
}

.forny-container .mt-10 {
    margin-top: 2.5rem !important;
    margin-top: var(--forny-p10) !important;
}

.forny-container .border-r-0 {
    border-right-width: 0 !important;
}

.forny-container .btn-social {
    color: white;
    border: 0;
}

.forny-container .btn-flat {
    padding: 0 !important;
}

.forny-container .btn-facebook {
    background: hsla(221, 40%, 47%, 1);
    background: var(--forny-color-facebook);
}

.forny-container .btn-facebook:hover {
    background: hsla(221, 40%, 40%, 1);
}

.forny-container .btn-google {
    background: hsla(4, 69%, 53%, 1);
    background: var(--forny-color-google);
}

.forny-container .btn-google:hover {
    background: hsla(4, 59%, 47%, 1);
}

.forny-container .btn-twitter {
    background: hsla(195, 100%, 60%, 1);
    background: var(--forny-color-twitter);
}

.forny-container .btn-twitter:hover {
    background: hsla(195, 78%, 54%, 1);
}

.forny-form .btn.btn-primary {
    border: 0;
    background-color: red;
    background-color: var(--forny-color-accent-500);
}

.forny-form .btn.btn-primary:hover {
    background-color: var(--forny-color-accent-700);
}

.forny-container .text-facebook {
    color: hsla(221, 40%, 47%, 1);
    color: var(--forny-color-facebook);
}

.forny-container .text-google {
    color: hsla(4, 69%, 53%, 1);
    color: var(--forny-color-google);
}

.forny-container .text-twitter {
    color: hsla(195, 100%, 60%, 1);
    color: var(--forny-color-twitter);
}

.forny-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: var(--forny-font-family);
    color: black;
    color: var(--forny-color-text);
}

.forny-container a {
    color: var(--forny-link-color);
}

.forny-form {
    margin: 0 auto;
}

.forny-form h4 {
    color: black;
    color: var(--forny-color-header);
    font-weight: 700;
    margin-bottom: 1rem;
    margin-bottom: var(--forny-p4);
}

.forny-form .forny-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.forny-form .forny-logo img {
    width: 200px !important;
    display: block;
    /*margin: 0 auto;*/

}

@media (max-width: 768px) {
    .forny-form .forny-logo img {
        margin: 0 auto !important;
        display: block !important;
        margin-top: 10px !important;
    }
}

.forny-form .forny-logo img.logo-cliente {
    width: 200px !important;
    width: auto;
    display: block;
    margin-top: 0px;
}

.forny-form .form-control {
    height: auto;
    border: 1px solid red;
    border: var(--forny-form-control-border);
    padding: 4px;
    padding: var(--forny-form-control-padding);
    border-radius: var(--forny-form-control-radius);
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.forny-form .input-group-prepend .input-group-text,
.forny-form .input-group-append .input-group-text {
    border: 1px solid red;
    border: var(--forny-form-control-border);
    padding: 4px;
    padding: var(--forny-form-control-padding);
    border-radius: var(--forny-form-control-radius);
    text-align: center;
    display: inline-block;
    min-width: 48px;
}

.forny-form .input-group-prepend .input-group-text svg,
.forny-form .input-group-append .input-group-text svg {
    fill: currentColor;
}

.forny-form .input-group .input-group-prepend + .form-control {
    /*border-left: 0 !important;*/
    padding-left: 0.25rem;
    padding-left: var(--forny-p1);
}

.forny-form .input-group .input-group-append + .form-control {
    border-right: 0;
    padding-right: 0.25rem;
    padding-right: var(--forny-p1);
}

.forny-container .alert-danger {
    background-color: hsla(0, 100%, 94%, 1);
    background-color: var(--forny-danger-100);
    color: hsla(4, 69%, 53%, 1);
    color: var(--forny-danger-500);
}

.forny-container .has-error .form-control,
.forny-container .has-error .input-group-append .input-group-text,
.forny-container .has-error .input-group-prepend .input-group-text {
    border-color: hsla(4, 69%, 53%, 1);
    border-color: var(--forny-danger-500);
    outline-color: hsla(4, 69%, 53%, 1);
    outline-color: var(--forny-danger-500);
    box-shadow: none;
}

.forny-container .has-error .form-control,
.forny-container .has-error .input-group-prepend .input-group-text {
    color: hsla(4, 69%, 53%, 1);
    color: var(--forny-danger-500);
}

.forny-inner {
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
}

.forny-form {
    margin: auto;
}

@media (min-width: 768px) {
    .forny-inner {
        height: auto;
        width: 26rem;
        width: var(--forny-form-width);
    }

    .forny-form {
        width: 26rem;
        width: var(--forny-form-width);
    }
}

.forny-container .has-error {
    background: hsla(0, 100%, 94%, 1);
    background: var(--forny-danger-100);
}

.forny-container .has-error .form-control::-webkit-input-placeholder {
    color: hsla(4, 69%, 53%, 1);
    color: var(--forny-danger-500);
}

.forny-container .has-error .form-control::-moz-placeholder {
    color: hsla(4, 69%, 53%, 1);
    color: var(--forny-danger-500);
}

.forny-container .has-error .form-control:-ms-input-placeholder {
    color: hsla(4, 69%, 53%, 1);
    color: var(--forny-danger-500);
}

.forny-container .has-error .form-control::-ms-input-placeholder {
    color: hsla(4, 69%, 53%, 1);
    color: var(--forny-danger-500);
}

.forny-container .has-error .form-control::placeholder {
    color: hsla(4, 69%, 53%, 1);
    color: var(--forny-danger-500);
}

.forny-container .has-error .form-control,
.forny-container .has-error .input-group-text,
.forny-container .has-error input:-webkit-autofill,
.forny-container .has-error input:-webkit-autofill:hover,
.forny-container .has-error input:-webkit-autofill:focus,
.forny-container .has-error input:-webkit-autofill:active {
    box-shadow: 0 0 0 30px hsla(0, 100%, 94%, 1) inset !important;
    box-shadow: 0 0 0 30px var(--forny-danger-100) inset !important;
    border-color: hsla(4, 69%, 53%, 1);
    border-color: var(--forny-danger-500);
    color: hsla(4, 69%, 53%, 1);
    color: var(--forny-danger-500);
}

.forny-container .is-valid,
.forny-container .is-valid input:-webkit-autofill,
.forny-container .is-valid input:-webkit-autofill:hover,
.forny-container .is-valid input:-webkit-autofill:focus,
.forny-container .is-valid input:-webkit-autofill:active {
    background-color: hsla(152, 68%, 96%, 1);
    background-color: var(--forny-color-success-100);
    box-shadow: 0 0 0 30px hsla(152, 68%, 96%, 1) inset !important;
    box-shadow: 0 0 0 30px var(--forny-color-success-100) inset !important;
}

.forny-form .form-group.focused:not(.has-error) {
    background: white;
    border-color: var(--forny-color-text-100);
}

.forny-form .form-control,
.forny-form .input-group-text {
    color: black;
    color: var(--forny-color-text);
    background: transparent;
}

.forny-form .form-control::-webkit-input-placeholder {
    color: black;
    color: var(--forny-color-text);
}

.forny-form .form-control::-moz-placeholder {
    color: black;
    color: var(--forny-color-text);
}

.forny-form .form-control:-ms-input-placeholder {
    color: black;
    color: var(--forny-color-text);
}

.forny-form .form-control::-ms-input-placeholder {
    color: black;
    color: var(--forny-color-text);
}

.forny-form .form-control::placeholder {
    color: black;
    color: var(--forny-color-text);
}

.forny-container
.custom-control-input:checked
~ .custom-control-label::before {
    border-color: red;
    border-color: var(--forny-color-accent-500);
    background-color: red;
    background-color: var(--forny-color-accent-500);
}

/* INPUT ADDONS */

.forny-form .form-group .input-group-append .input-group-text {
    border: 1px solid #ced4da;
    border-radius: 0 6px 6px 0px;
}

.forny-form .form-group .input-group-append .input-group-text:hover {
    color: red;
    color: var(--forny-color-accent-500);
}

.forny-form .input-group-prepend .input-group-text {
    padding-right: 0.5rem;
    padding-right: var(--forny-p2);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0 !important;
}

/* ALERTS */

.forny-container .alert {
    margin-bottom: 1rem;
    margin-bottom: var(--forny-p4);
}

.forny-container .password-field .form-control {
    border-right: 0 !important;
}

.forny-container .btn-icon {
    margin-right: 8px;
}

:root {
    --forny-form-paddings: 2.5rem;

    --forny-color-accent-100: hsla(125, 64%, 93%, 1);
    --forny-color-accent-500: hsla(244, 79%, 52%, 1);
    --forny-color-accent-700: hsla(213, 94%, 36%, 1);

    --forny-color-gray-100: hsla(216, 33%, 97%, 1);
    --forny-color-gray-500: hsla(209, 23%, 60%, 1);
    --forny-color-gray-900: hsla(210, 39%, 23%, 1);

    --forny-font-family: 'Nunito', sans-serif;
    --forny-color-text-100: var(--forny-color-gray-100);
    --forny-color-text: var(--forny-color-gray-900);
    --forny-color-header: var(--forny-color-gray-900);
    --forny-link-color: var(--forny-color-accent-500);

    --forny-form-control-border: none;
    --forny-form-control-padding: var(--forny-p2) var(--forny-p4);
    --forny-form-control-radius: 6px;
    --forny-form-control-background: white;
    --forny-shadow-color: var(--forny-color-gray-300);
}

.forny-container {
    display: block;
    align-items: center;
    background-color: white;
}

.forny-inner {
    display: flex;
    height: 100vh;
    width: 100%;
}

.forny-two-pane {
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
}

.forny-two-pane > div {
    flex: 1;
}

.forny-two-pane > div:first-child {
    display: flex;
    align-items: center;
    /*background-color: #fee7f0;*/
    background-color: #F8F9FA;

}

.forny-two-pane > div:last-child {
    display: none;
    background-image: url('/assets/img/stories/bg-login.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: hsla(210, 39%, 23%, 1);
    color: var(--forny-color-gray-900);
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #c86fc9;

}

.forny-form {
    padding: 2rem;
}

.forny-container h4 {
    font-weight: 700;
}

.forny-container .btn-social {
    font-weight: 500;
}

.forny-form .forny-logo {
    text-align: left;
    color: hsla(210, 39%, 23%, 1);
    color: var(--forny-color-gray-900);
}

@media (min-width: 768px) {
    .forny-two-pane > div:last-child {
        display: flex;
    }
}

.forny-container .btn-social {
    color: hsla(210, 39%, 23%, 1);
    color: var(--forny-color-gray-900);
    background-color: transparent !important;
    width: auto;
    display: inline-block;
    font-size: 0.875rem;
    font-size: var(--forny-text-sm);
    padding: 0 !important;
    margin: 0 !important;
    margin-right: 1rem !important;
    margin-right: var(--forny-p4) !important;
}

.forny-container .btn-social:hover {
    text-decoration: underline;
}

.form-group > label.error {
    text-transform: none;
    color: #FB404B;
    font-weight: 500;
    font-size: 12px;
    margin-top: 4px;
}

input.form-control.error, .input-group.error {
    border: 2px solid #fb404b !important;
}

/* FORMS */

.forny-form .form-group {

    background: transparent;

    border-radius: 0;
    transition: box-shadow 0.3s;
    margin-bottom: 2rem;
    margin-bottom: 25px;
}

.forny-form .form-group .input-group {
    background: white;

    color: hsla(209, 23%, 60%, 1);
    color: var(--forny-color-gray-500);
    /*border-bottom: 2px solid hsla(210, 39%, 23%, 1);*/
    /*border-bottom: 2px solid var(--forny-color-gray-900);*/
}

.forny-form .form-group .form-control,
.forny-form .form-group .input-group-text {
    border-radius: 0;
    color: hsla(209, 23%, 60%, 1);
    color: var(--forny-color-gray-500);
}

.forny-container .form-control::-webkit-input-placeholder,
.forny-container .input-group-text {
    color: hsla(209, 23%, 60%, 1);
    color: var(--forny-color-gray-500);
}

.forny-container .form-control::-moz-placeholder,
.forny-container .input-group-text {
    color: hsla(209, 23%, 60%, 1);
    color: var(--forny-color-gray-500);
}

.forny-container .form-control:-ms-input-placeholder,
.forny-container .input-group-text {
    color: hsla(209, 23%, 60%, 1);
    color: var(--forny-color-gray-500);
}

.forny-container .form-control::-ms-input-placeholder,
.forny-container .input-group-text {
    color: hsla(209, 23%, 60%, 1);
    color: var(--forny-color-gray-500);
}

.forny-container .form-control::placeholder,
.forny-container .input-group-text {
    color: hsla(209, 23%, 60%, 1);
    color: var(--forny-color-gray-500);
}

/* BUTTONS */

.toggle-visibility-password i {
    margin-top: 11px;
    font-size: 18px;
}

.forny-form .btn {
    border-radius: 6px;
    padding: 6px 28px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px;
    border: 0;
    height: 3.625rem;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    margin-bottom: 15px;
}

.forny-form .btn:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.forny-form .btn:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.forny-form .input-group .input-group-prepend + .form-control {
    padding-left: 0.5rem;
    padding-left: var(--forny-p2);
}

.forny-container .nav-tabs {
    margin-bottom: 1.5rem;
    margin-bottom: var(--forny-p6);
    border-bottom: 0;
}

.forny-container .nav-tabs a {
    border-bottom: 2px solid transparent;
    padding-left: 0;
    padding-right: 0;
    margin-right: 24px;
    color: hsla(210, 39%, 23%, 1);
    color: var(--forny-color-gray-900);
}

.forny-container .nav-tabs a.active {
    border-color: transparent;
    border-bottom-color: hsla(244, 79%, 52%, 1);
    border-bottom-color: var(--forny-color-accent-500);
    font-weight: bold;
}
