.roboto-regular {
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-weight: 700;
  font-style: normal;
}

body {
  margin: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.pc-header {
  height: 56px;
  padding: 0 12rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0040600f;
}

.wrapper-layout {
  max-width: 1440px;
  padding: 0 16px;
  margin: 100px auto 0;
}

#auth-form {
  display: flex;
  flex-direction: column;
  max-width: 308px;
  margin: 44px auto 0;
}

.auth-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 32px;
}

.auth-input-container {
  position: relative;
  margin-top: 24px;
}

.auth-switcher {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  color: #212121;
  transition: 0.15s;
}

.auth-switcher:hover,
.auth-switcher:focus {
  opacity: 0.85;
}

.auth-input {
  background: transparent;
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  color: #000;
  border: 1px solid #00000024;
  border-radius: 8px;
}

.auth-input::placeholder {
  color: #212121;
}

.auth-input:focus {
  border: 1px solid #0067b2b8;
  outline: none;
}

.auth-link {
  color: #0067b2;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 40px;
  text-decoration: none;
  transition: 0.25s;
}

.auth-link:hover,
.auth-link:focus {
  outline: none;
  opacity: 0.85;
}

.auth-btn {
  width: 100%;
  height: 46px;
  padding: 14px 16px;
  font-size: 16px;
  background-color: #0067b2;
  outline: none;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: 0.25s;
}
.auth-btn:hover,
.auth-btn:focus {
  opacity: 0.85;
}
.auth-btn_disabled {
  background-color: #666;
  cursor: default;
  pointer-events: none;
}

.auth-btn_loading {
  padding: 5px 0;
}

.auth-btn_disabled:hover,
.auth-btn_disabled:focus {
  opacity: 1;
}

.auth-message {
  color: #c62828;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-top: 12px;
  text-decoration: none;
  transition: 0.25s;
}

@media screen and (max-width: 1300px) {
  .pc-header {
    padding: 0 6rem;
  }

  #auth-form {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1024px) {
  .pc-header {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 768px) {
  .pc-header {
    padding: 0 1rem;
  }

  .pc-header__logo {
    width: 160px;
  }
}

@media screen and (max-width: 425px) {
  .wrapper-layout {
    margin: 24px auto 0;
  }

  #auth-form {
    max-width: 296px;
  }

  .auth-title {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 24px;
  }

  .auth-input-container {
    margin-top: 16px;
  }

  .auth-link {
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 20px;
  }
}
