@import url("main.css");
@import url("modal.css");
@import url("button.css");

input[type="text"], input[type="password"] {
  width: 100%;
  height: 40px;
  font-size: 15px;
  border: 0;
  border-radius: 15px;
  background-color: rgb(233, 233, 233);
  outline: none;
  padding-left: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

/* 자동 로그인 */
.auto-login-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #333;
}

/* 비밀번호 찾기 */
.password-reset a {
  font-size: 14px;
  color: #4facfe;
  margin-bottom: 10px;
  text-decoration: none;
}
.password-reset a:hover {
  text-decoration: underline;
}

/* 홈으로 가기 */
a {
  text-decoration: none;
  font-size: 14px;
  color: #4facfe;
  display: block;
  margin-top: 10px;
}

.close-btn {
  background: linear-gradient(to right, #ff6b6b, #ff4f4f);
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}