/* index.php */
/* 폼 틀 */
.form_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

form {
  width: 400px;
  padding: 40px 40px 30px 40px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.idanpas label {
  color: #888;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
}

/* 폼 틀 끝 */


/* 로고 */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.logo>img {
  transform: scale(1.3);
}

/* 로고 끝 */

.bar {
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bar>div {
  height: 1px;
  width: 96%;
  background-color: #ccc;
  margin-bottom: 50px;
}

/* 체크박스 */
.checkbox {
  user-select: none;
  color: white;
  display: flex;
  position: relative;
}

.checkbox label {
  position: absolute;
  top: 3px;
  margin-left: 10px;
}

/* 체크박스 끝*/

/* 로그인 박스*/
.login {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.login button {
  width: 100%;
  background-color: #d44179;
  padding: 10px 15px;
  color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  border: none;
  font-size: 20px;
}

.login button:hover {
  opacity: .7;
}

/* 로그인 박스 끝*/

/* 회원가입/비밀번호 찾기 */
.function_1 {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.function_1>a {
  padding: 8px 20px;
  color: #eee;
}

.function_1>.bar-2 {
  height: 14px;
  width: 1px;
  background-color: #eee;
}

/* 회원가입/비밀번호 찾기 끝*/

/* passSearch.php */
.search_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.search_wrap>form {
  border: 1px solid #555;
  width: 500px;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.search_wrap>form>div>h3 {
  font-weight: bold;
  color: white;
}

.hr {
  background-color: white;
  width: 100%;
  height: 1px;
  margin: 10px 0;
}

.btn-pass {
  background-color: #d44179;
  border: 1px solid rgb(235, 113, 160);
  width: 100%;
  height: 50px;
  color: white;
  border-radius: 5px;
}

.btn-pass:hover {
  opacity: .7;
}

.back {
  border-radius: 5px;
  border: 1px solid #d44179;
  color: #d44179;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back:hover {
  background-color: #d44179;
  color: white;
  font-weight: bold;
}

.error {
  background: #F2DEDE;
  color: #A94442;
  padding: 10px;
  width: 95%;
  border-radius: 5px;
  margin: 20px auto;
}