/* 로그인 스킨 메인 컨테이너 */
#mb-login {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 100vh;
  background-color: #f8f9fa;
}

.mbskin_box {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 로고 영역 */
.logo_area {
  text-align: center;
  margin-bottom: 30px;
}

.logo_area img {
  max-width: 200px;
  height: auto;
}

/* 타이틀 및 가입 링크 */
.mb_log_cate {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}

.mb_log_cate h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.join_link {
  font-size: 0.9rem;
  color: #666;
  text-decoration: none;
}

/* 입력 폼 */
#login-fs {
  border: 0;
  padding: 0;
  margin: 0;
}

.input_group {
  margin-bottom: 10px;
}

.frm_input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.frm_input:focus {
  border-color: #007bff;
  outline: none;
}

/* 로그인 버튼 */
.btn_submit {
  width: 100%;
  height: 55px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}

.btn_submit:hover {
  background: #000;
}

#login-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #666;
}

.chk_box label {
  cursor: pointer;
}

.login_if_lpl a {
  color: #666;
  text-decoration: none;
}

.login_if_lpl a:hover {
  text-decoration: underline;
}

/* 메인으로 돌아가기 버튼 스타일 */
.btn_back_home {
  margin-top: 25px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.btn_back_home a {
  display: inline-block;
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 15px;
  border: 1px solid #eee;
  border-radius: 20px;
  transition: all 0.2s;
}

.btn_back_home a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

@media (max-width: 480px) {
  .mbskin_box {
    padding: 20px;
  }
  
  .btn_submit {
    height: 50px;
  }
}