/* Alerts */

.alert-success {
    border: 1px solid #30d857 !important;
    background-color: #30d857 !important;
}

.alert {
    opacity: 1;
    margin: auto;
    margin-top: 10px;
    width: 350px;
    height: 30px;
    border-radius: 20px;
    padding: 20px 30px;
    border: 1px solid salmon;
    font-size: 13px;
    font-family: sans-serif;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-danger {
    background-color: #f7ed2c;
}

@keyframes fade {
    100% {
        opacity: 0;
    }
}

.alert-success .close-alert {
    color: #ffff;
}

.close-alert {
    cursor: pointer;
    color: rgb(2, 183, 254);
}


/* End Alerts */

/* Header Section Style */


.header-actions a button {
    background-color: transparent;
    padding: 8px 13px 8px 10.5px;
    border: 1px solid #E3E3E8;
    border-radius: 100%;
}

.header-actions a button:hover {
    border-color: var(--blue);
    background-color: #FFF;
}

.header-actions a button:hover svg {
    color: var(--blue);
}

.header-actions a button svg {
    color: var(--black);
}

.search-bar .menu-search-bar {
    margin-left: 30px;
}

.search-bar-input input {
    background-color: #F5F8FB;
    padding: 12px 20px 12px 40px;
    color: #6C6C7F;
    border-radius: 8px;
    font-size: 13px;
}

.search-bar-icon {
    left: 11px;
    top: 11px;
}

.search-bar-icon svg {
    color: var(--blue);
    font-weight: 100 !important;
}

.header-logo a img {
    width: 200px;
}

.header-actions a button i {
    color: var(--black);
}

/* End Header Section Style */


/* Login Section Style */

.login {
    background-image: url('../../images/login_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    background-color: #EAEAEB;
    padding: 50px 0px;
}

.login-box {
    background-color: #FFF;
    width: 470px;
    padding: 45px 50px;
    border-radius: 8px;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 130px;
}

#recaptcha {
    margin-top: 25px;
}

.login-box-text h3 {
    color: #120F2D;
}

.login-box-text small {
    display: inline-block;
    font-size: 13px;
    margin-top: 8px;
}

.login-box-text small a {
    color: var(--blue);
    font-weight: 700;
    border-bottom: 2px solid var(--blue);
    margin-right: 5px;
}

.login-box-form {
    margin-top: 40px;
}

.form-field:nth-child(2) {
    margin-top: 20px;
}

.g-recaptcha {
    transform: scale(0.95) translateX(8px);
}

.form-field label {
    display: block;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
}

.form-field label span {
    display: inline-block;
    top: -2.5px;
    right: 3px;
}

.form-field input {
    border: none;
    outline: none;
    border: 1px solid #eaeaea;
    font-size: 13px;
    background: #F4F4F6 !important;
    color: #7e7c8a;
    padding: 13.5px;
    border-radius: 8px;
    margin-top: 8px;
}

.form-remember-me {
    margin-top: 15px;
}

.form-remember-me label {
    font-size: 13px;
    display: inline-block;
    margin-right: 5px;
}

.form-button {
    margin-top: 30px;
}

.form-button button {
    width: 100%;
    background-color: var(--red);
    color: #FFF;
    padding: 13.5px 0px;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.form-button button:hover {
    background-color: var(--blue);
}

.form-button button i {
    top: 2px;
    right: 5px;
}

.forgot-password {
    margin-top: 20px;
    font-size: 14px;
    font-weight: bold;
    color: var(--blue);
}

.forgot-password a {
    color: inherit;
    font-weight: inherit;
}

.forgot-password a:hover {
    /* text-decoration: underline; */
    border-bottom: 1px solid var(--blue);
}

/* End Login Section Style */


/* Footer Section */

#footer {
    margin: 0px;
}

/* End Footer Section */