@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  color-scheme: light;
}

html,
body {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Pretendard, sans-serif;
  background: #f6f8fc !important;
  color: #222 !important;
}

input,
textarea,
select,
button {
  color-scheme: light;
}

.app {
  min-height: 100vh;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-inner {
  width: 100%;
  max-width: 520px;
}

.logo {
  display: block;
  width: 150px;
  margin: 0 auto 22px;
}

.logo.small {
  width: 110px;
}

h1 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 800;
  color: #222;
}

p {
  margin: 0;
  line-height: 1.65;
  color: #5b6472;
}

button,
.home-btn {
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #4a78d1, #6b8de8);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="password"],
select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid #d7dfef;
  font-size: 16px;
  font-family: inherit;
}

input:focus,
select:focus {
  outline: none;
  border-color: #4a78d1;
  box-shadow: 0 0 0 4px rgba(74, 120, 209, 0.12);
}

.copyright {
  margin-top: 18px;
  text-align: center;
}

.copyright a {
  font-size: 12px;
  color: #9aa4b2;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.copyright a:hover {
  color: #4a78d1;
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  .logo {
    width: 130px;
  }
}