/* General Input Styles */
input {
    border-bottom-color: #eee !important;
}

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

/* Brand Logo */
.brand {
    width: 5em;
}

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

/* Header Styles */
.kc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

/* Main Body Container */
.body-container {
    border-radius: 5px;
    width: 600px;
    padding: 20px;
    background: white;
}

/* Button Styles */
.btn-connexion {
    background-color: #9bcd41 !important;
    border: none !important;
    color: white;
    text-decoration: none;
}

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

.btn-connexion span {
    color: white;
}
.pf-c-button:after {
    border: none !important;
}
/* Title Styles */
#main_title {
    font-weight: bold;
    letter-spacing: 0.8px;
    font-size: 25px;
}

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

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Sign-in Form Heading */
.form-signin-heading {
    margin-bottom: 50px;
}

/* Error Message Styling */
#input-error, #input-error-password-confirm {
    width: 100%;
    padding: 10px;
    color: darkred;
}

.position-relative {
    position: relative;
}
.show-pwd {
    position: absolute;
    top: 8px;
    right: -1px;
    z-index: 100;
    background: transparent;
    border: none;
}