body.login.login-action-login {
    background-color: #fff;
}

.login form {
    border-radius: 0px;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.login form .forgetmenot {
    display: flex;
    align-items: center;
}
body.login.login-action-login,
.login.login-action-register,
.login.login-action-lostpassword {
    /*background: url(https://cdn.pixabay.com/photo/2017/08/01/13/36/computer-2565478_960_720.jpg) no-repeat center center fixed!important;*/
    background: #fff;
    -moz-background-size: cover !important;
    -webkit-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.login #backtoblog a,
.login #nav a {
    text-decoration: none;
    color: #fff;
}

.login #nav {
    /*        display: none; // 비밀번호찾기 안보이게*/
}

.login #backtoblog,
.login #nav {
    /*display: none; // 홈페이지로 바로가기 안보이게*/
}

.language-switcher {
    display: none; // 언어선택 안보이게
}

.wp-core-ui .button-primary {
    background: #333333 !IMPORTANT;
    border-color: #333333 !IMPORTANT;
}

.login .button.wp-hide-pw .dashicons {
    top: 0.9rem !important;
}

#login form p.submit {
    margin-top: 40px !important;
}

body.login #backtoblog {
    color: #333333!IMPORTANT;
}


/* ??? */
#login h1 a,
.login h1 a {
    background-image: url(https://minedwell.mycafe24.com/main/image/mw_logo.svg);
    width: 240px;
    background-size: 240px;
    background-repeat: no-repeat;
    padding-bottom: 0px;
}


/******
로그인 페이지
*******/

/* 전체 배경 */
body.login {
    padding-top:10vh;
}

/* 로그인 박스 */
body.login #login {
    padding: 4rem 2rem 2rem;
    margin: 60px auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 92%;
    max-width:380px;
    margin-top: 0vh !important;
}


/* 입력 필드 */
body.login form .input,
body.login input[type="text"],
body.login input[type="password"] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: all 0.2s ease;
    margin-top: 6px;
}

body.login form .input:focus {
    border-color: #333333;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* 버튼 */
body.login .button-primary {
    background: #333333;
    border: solid 1px #333333;
    padding: 14px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    min-height: 60px !important;
    transition: background 0.2s ease;
}

body.login .button-primary:hover {
    background: transparent !IMPORTANT;
    color: #333 !IMPORTANT;
}

/* 링크들 */
body.login #nav,
body.login #backtoblog {
    text-align: center;
    margin-top: 1.5rem;
}

body.login #nav a,
body.login #backtoblog a {
    color: #333333 !important;
    font-size: 14px;
    font-weight: 500;
}

body.login #login_error,
body.login .message,
body.login .success {
    border-radius: 10px;
    font-size: 15px;
    padding: 1rem;
}

/*
#login .notice-info {
    display: none;
}
*/
.login label {
    width:100%;
}


@media(max-width:782px){
    body.login #login {
        padding: 3rem 2rem 3rem;
        margin: 0 auto;
        max-width:320px;
        width: calc(100% - 100px);
    }

    body.login .button-primary {
        font-size:16px !important;
    }
    #login h1 a, .login h1 a {
        width: 192px;
        background-size: 100%;
    }
}