/*
Theme Name: Enfold Child
Theme URI: none
Description: Enfold Child Theme
Author: Alloy Software
Author URI: https://alloysoftware.com
Template: enfold
Version: 1.0.0
*/

/* Add your custom styles here */
span.logo {
    margin-top: 15pt;
}

.social-icon {
    width: 32px;
    height: 32px;
}


.modernHeading {
    text-align: center;
    overflow: hidden;
    margin-top: 10pt 0;
    font-weight: 300;
    font-size: 13pt;


    & > span {
        display: inline-block;
        position: relative;

        &:before, &:after {
            content: "";
            position: absolute;
            height: 1px;
            border-bottom-style: solid;
            border-bottom-width: 1px;
            border-color: inherit;
            top: 50%;
            transform: translateY(-50%);
            width: 1000px;
        }

        &:before {
            right: 100%;
            margin-right: 10pt;
        }

        &:after {
            left: 100%;
            margin-left: 10pt;
        }
    }
}


body .av-special-heading.elegant-centered .av-special-heading-tag .heading-wrap:before {
    right: 100%;
    margin-right: 1em;
}

input[type="submit"] {
    border-radius: 5px;
}

.error {
    color: #dc2100;
}


/** Login page **/
.login-form-container {
    margin: 0;
}

.login-form-container input[type="text"],
.login-form-container input[type="password"] {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #005177;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.login-message {
    border-radius: 4px;
    margin: 10px 0;
}

.login-message.error {
    color: #c62828;
}

.login-message.success {
    color: #2e7d32;
}

.alternate_color sup.required {
    color: #f72828;
}

/** Password reset page **/
.custom-meter {
    --percent: 0;
    --color: #ccc;
    --background-color: transparentccc;

    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
    margin: 3pt 0;
}

.custom-meter::before {
    content: '';
    position: absolute;
    height: 100%;
    width: calc(var(--percent, 0) * 1%);
    background-color: var(--color, #ccc);
    transition: width 0.3s, background-color 0.3s;
}

#password-strength-text {
    line-height: 100%;
    font-size: 8pt;
    margin: 0 0 10pt 0;
    color: #265779;
    text-align: center;
}

#password-message {
    line-height: 100%;
    font-size: 8pt;
    margin: 4pt 0;
    color: #ff4040;
    text-align: center;
}

.tips {
    font-size: 9pt;
}

p.tips {
    margin-bottom: 2pt;
}

ul.tips {
    margin-left: 12pt;
}

ul.tips li {
    padding: 0;
}

#btn-submit[disabled] {
    background: #9e9e9e;
    cursor: not-allowed;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    meter {
        display: block;
    }

    meter[value="1"] { background: #FF0000; }
    meter[value="2"] { background: #FF7000; }
    meter[value="3"] { background: #FFD000; }
    meter[value="4"] { background: #b0eF00; }
    meter[value="5"] { background: #00FF43; }
}