:root {
    --bs-blue: #007bff;
    --bs-indigo: #6610f2;
    --bs-purple: #696cff;
    --bs-pink: #e83e8c;
    --bs-red: #ff3e1d;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffab00;
    --bs-green: #71dd37;
    --bs-teal: #20c997;
    --bs-cyan: #03c3ec;
    --bs-white: #fff;
    --bs-gray: rgba(67, 89, 113, 0.6);
    --bs-gray-dark: rgba(67, 89, 113, 0.8);
    --bs-gray-25: rgba(67, 89, 113, 0.025);
    --bs-gray-50: rgba(67, 89, 113, 0.05);
    --bs-primary: #696cff;
    --bs-secondary: #8592a3;
    --bs-success: #71dd37;
    --bs-info: #03c3ec;
    --bs-warning: #ffab00;
    --bs-danger: #ff3e1d;
    --bs-light: #fcfdfd;
    --bs-dark: #233446;
    --bs-gray: rgba(67, 89, 113, 0.1);
    --bs-primary-rgb: 105, 108, 255;
    --bs-secondary-rgb: 133, 146, 163;
    --bs-success-rgb: 113, 221, 55;
    --bs-info-rgb: 3, 195, 236;
    --bs-warning-rgb: 255, 171, 0;
    --bs-danger-rgb: 255, 62, 29;
    --bs-light-rgb: 252, 253, 253;
    --bs-dark-rgb: 35, 52, 70;
    --bs-gray-rgb: 67, 89, 113;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 67, 89, 113;
    --bs-body-color-rgb: 105, 122, 141;
    --bs-body-bg-rgb: 245, 245, 249;
    --bs-font-sans-serif: "Work Sans", sans-serif;
    --bs-font-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-root-font-size: 16px;
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 0.9375rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.53;
    --bs-body-color: #697a8d;
    --bs-body-bg: #333;
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(67, 89, 113, 0);
}

::placeholder {
    color: rgb(75, 72, 72);
    opacity: 1; /* Firefox */
  }

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.login__background {
    height: 100%;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
}

@media only screen and (min-width: 1366px) {
    .login-row--left {
        flex-basis: 70%;
        max-width: 70%;
    }
}

.ncc-row {
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: -6px;
    margin-left: -6px;
}

.login-row {
    height: 100%;
    flex: 1;
    margin: 8px;
    overflow: hidden;
}

.login-row--left {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.login-box {
    color: #fff;
    display: flex;
    justify-content: center;
    flex: 1;
    flex-direction: column;
    margin: 0 auto;
}

.login-header {
    position: relative;
    z-index: 7;
    width: 110px;
}

#dechefr-login-logo {
  width: 110px;
}

.container-login {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    padding-top: 10rem;
}

.wrap-login {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.input-login {
    display: block;
    height: 45px;
    padding: 0 20px 0 50px;
    width: 100%;
    font-size: 1.0625rem;
    font-weight: 400;
    background: #66707d;
    color: #ffffff;
}

@media only screen and (min-width: 1366px) {
    .login-intro {
        flex-basis: 30%;
        max-width: 30%;
    }
}

.login-intro {
    background-color: #001027;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 8px;
    box-shadow: 0 0 #dcedff;
    color: #000;
    overflow: auto;
    padding: 15px;
    min-height: 98.5vh;
    min-width: 20rem;
}

.login-intro-img {
    float: right;
    padding: 24px;
    width: 41%;
}

.login-content {
    margin: auto 0;
    padding: 0 24px;
}

.login-content__footer {
    color: #5a575c;
    font-size: .75rem;
    line-height: 1.25rem;
    margin-top: auto;
    padding: 0 24px 24px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

.login-form {
    width: 500px;
    padding: 30px;
}

@media (max-width: 575px) {
    .login-form {
        width: 400px;
    }
}

.alert {
    z-index: 1000;
    font-size: 1rem;
}

.centered {
    float: none;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
    align-items: center
}

.no-border {
    border: 0;
    box-shadow: none;
}

#no-account-link {
    padding-top: 30px
}

.panel-create-account-info {
    font-size: 1rem;
}

.external-link {
    color: #649DED;
    cursor: pointer;
}

#create-account-link {
    padding-top: 20px;
    margin: -30px 0 50px 0
}

.input-icons i {
    position: absolute;
    z-index: 1000;
}

.icon {
    padding: 17px;
    color: #2d2b2b;
    min-width: 40px;
    text-align: center
}

.btn-login {
    font-style: normal;
    color: #ffffff;
    background-color: #284059;
    border: 2px solid #284059;
    border-radius: 0px;
    font-weight: 400;
    font-size: 1.0625rem;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 25px 7px 25px;
    margin-top: 1rem;
    white-space: nowrap;
    cursor: pointer;
}

.alert-sign-up {
    font-size: 1.2rem;
    color: maroon;
    padding-left: 10px
}

.user-info-panel {
    padding-right: 0 !important;
    padding-left: 0 !important;
}