@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;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 5px;
  font-size: 14px;
  color: #333;
}

/* 체크박스 */
.auto-login-wrapper input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

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

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