.login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0 24px;
  background-color: #F8F8F8;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 1187px) {
  .login {
    background: #fff;
    align-items: flex-start;
  }
}

.join {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 177vh;
  padding: 0 24px;
  background-color: #F8F8F8;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 1187px) {
  .join {
    background: #fff;
    align-items: flex-start;
  }
}

.login-container {
  padding: calc(64px - 1px) calc(64px - 1px);
  width: 490px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #DCDADA;
  box-sizing: border-box;
}
@media (max-width: 1187px) {
  .login-container {
    width: 100%;
    padding: 122px 0 0;
    border: 0;
    border-radius: 0;
  }
}

.login-title {
  color: #1E1E1E;
  font-size: 40px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 1187px) {
  .login-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 32px;
  }
}

.login-form__options {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px 0 32px;
  color: #606060;
}

.login-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin: 32px 0 12px;
  color: #1E1E1E;
  letter-spacing: -0.0125rem;
}

.login-font-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #FA582F;
}

.agree-wrapper {
  display: flex;
  align-items: left;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.agree-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

.agree-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #f75e3c; /* 체크박스 색상 원하는 경우 */
}

.agree-label span {
  display: inline-block;
}