@charset "utf-8";

/* 전체 스타일 */
body {
    font-family: 'Roboto', sans-serif; /* 기존 폰트 유지 */
    background-color: #f7f8fa;
    margin: 0;
    padding: 0;
    color: #333;
}

/* 비밀번호 확인 메인 컨테이너 */
#pw_confirm {
    max-width: 480px;
    margin: 150px auto;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#pw_confirm:hover {
    transform: scale(1.02); /* 살짝 확대 효과 */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#pw_confirm h1 {
    font-size: 24px;
    color: #4a90e2; /* 은은한 블루 컬러 */
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

#pw_confirm p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

#pw_confirm strong {
    color: #4a90e2;
    font-weight: 600;
}

#pw_confirm fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* 입력 필드 */
#pw_confirm input[type="password"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 25px;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    background-color: #f9fbfc;
    color: #333;
}

#pw_confirm input[type="password"]:focus {
    border-color: #4a90e2;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

/* 제출 버튼 */
#pw_confirm input[type="submit"] {
    background-color: #4a90e2;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.2);
}

#pw_confirm input[type="submit"]:hover {
    background-color: #357abd;
    box-shadow: 0 10px 30px rgba(53, 122, 189, 0.3);
}

#pw_confirm input[type="submit"]:active {
    transform: scale(0.98); /* 클릭 시 눌리는 효과 */
}

/* 취소 버튼 */
.mbskin .btn_cancel {
    background-color: #ddd;
    color: #555;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.mbskin .btn_cancel:hover {
    background-color: #bbb;
}

/* 반응형 처리 */
@media (max-width: 600px) {
    #pw_confirm {
        width: 90%;
        padding: 30px;
    }
}
