/* General Input Styles */


/* Body and Background Styles */
.login-pf {
    background: #E2E3E9 url(../img/bg-login.jpg) repeat-x 50% 0 !important;
}

body {
    margin: 0;
    font-family: "DINPro-Medium";
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary);
    text-align: left;
    background-color: #f7f7f7;
}

body.body-bg {
    width: 100%;
    height: 50%;
    background: var(--primary); !important;
    overflow-x: hidden;
}

.logo {
    max-width: 140px;
}


/* Card Styles */
.card-pf {
    background-color: transparent;
    box-shadow: none;
}

/* Button Styles */

.btn-connexion:hover {
    text-decoration: none;
}

.btn-connexion {
    background-image: linear-gradient(to right, var(--secondary) 0%, var(--light-gradient) 100%);
    background-repeat: repeat-x;
    color: #030f40;
    border: 0;
    width: 100%;
    padding: 16px 0;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-connexion:not(:disabled)::after {
    content: '';
    position: absolute;
    background-color: rgba(58, 62, 70, 0.2);
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0.35, 3.5);
    border-radius: 80%;
    transition: 0.25s ease-in;
    opacity: 0;
}

.btn-connexion:hover::after {
    opacity: 1;
    border-radius: 0;
    transform: scale(1, 1);
}

.btn-connexion[disabled] {
    background: #c1c4cc;
}

/* Form Group for Settings */
.form-group.login-pf-settings {
    align-items: center !important;
}

.lh-3 {
    line-height: 3 !important;
}

.login-pf-page .card-pf p {
    color: inherit;
}

.header-emphasized {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.form-control-input-text {
    height: 62px !important;
    font-size: 0.875rem;
    background: #eaedf4;
    border: 0;
    padding-left: 16px;
}

.form-control-input-text:focus {
    border: 2px solid #aadc14 !important;
    background: #ffffff;
    box-shadow: none;
}

label {
    font-weight: unset !important;
}


.card-shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 24px 0px;
    min-width: 33%;
}

.pf-c-alert {
    min-width: 33%;
}

/* Forgot Password Button */
.btn-forgot {
    color: inherit;
}

.max-w-600 {
    max-width: 600px;
}
