/*
Theme Name: frost-child
Template: frost
Theme URI: https://frostwp.com/
Author: WP Engine
Author URI: https://wpengine.com/
Description: With its clean, minimal design and powerful feature set, Frost enables agencies to build stylish and sophisticated WordPress websites. Frost is a masterpiece of design and functionality. It features a range of valuable patterns, including hero and portfolio sections, prominent call-to-action buttons, and customer testimonials. Whether you’re building a website for your business, personal brand, or creative project, Frost is perfect for anyone looking to launch quickly and efficiently.
Tags: block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, full-site-editing, one-column, template-editing, threaded-comments, translation-ready, wide-blocks
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0.10
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: frost
*/

/* 로그인 박스 스타일 */
.custom-login-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 입력 필드 스타일 */
#wpmem_login input[type="text"],
#wpmem_login input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* 로그인 버튼 스타일 */
#wpmem_login input[type="submit"] {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

#wpmem_login input[type="submit"]:hover {
  background-color: #005177;
}

/* 강제로 폼을 넓게 보여주기 위한 추가 스타일 */
@media screen and (max-width: 768px) {
  .custom-login-box {
    width: 100% !important;
    padding: 10px;
    margin: 20px auto;
    box-sizing: border-box;
  }

  #wpmem_login input[type="text"],
  #wpmem_login input[type="password"],
  #wpmem_login input[type="submit"] {
    font-size: 16px;
  }

  .custom-register-link {
    font-size: 14px;
  }
}