@charset "UTF-8";

/* htpasswd-generate
---------------------------------------------------*/
#htpasswd-generate {
    padding: 20px 0 60px;
}
#htpasswd-generate .explain {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}
#htpasswd-generate .explain p {
    line-height: 1.8em;
}
#htpasswd-generate .selector-wrap {
    position: relative;
}
#htpasswd-generate .selector-wrap + .selector-wrap {
    margin-top: 10px;
}

/* disabled */
#htpasswd-generate .selector-wrap.disabled {
    opacity: 0.6;
    pointer-events: none;
}


/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    #htpasswd-generate {
        padding: 3.125vw 0 9.375vw;
    }
    #htpasswd-generate .explain {
        border-radius: 1.5625vw;
        padding: 3.125vw;
        margin-bottom: 6.25vw;
    }
    #htpasswd-generate .selector-wrap + .selector-wrap {
        margin-top: 1.5625vw;
    }
}


/* htpasswd-candidate
---------------------------------------------------*/
#htpasswd-candidate {
    padding: 20px 0 60px;
}
#htpasswd-candidate ul.candidate-list {
}
#htpasswd-candidate ul.candidate-list li {
    width: 100%;
    margin: 10px 0;
}
#htpasswd-candidate ul.candidate-list li .title {
    margin-bottom: 0.5em;
}
#htaccess{
    height: 15em;
}


/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    #htpasswd-candidate {
        padding: 3.125vw 0 9.375vw;
    }
    #htpasswd-candidate ul.candidate-list li {
        margin: 1.5625vw 0;
    }
}

