.warranty-check {
  max-width: 640px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: 'Noto Sans KR', sans-serif;
}

.warranty-check .notice {
  color: #a50000;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
}

.warranty-form {
  border-top: 2px solid #a50000;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-row label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-row input[type="text"] {
  width: 100%;
  height: 42px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 15px;
  transition: all 0.2s ease;
}

.form-row input[type="text"]:focus {
  border-color: #a50000;
  box-shadow: 0 0 0 2px rgba(165,0,0,0.1);
}

.phone-inputs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-inputs input {
  flex: 1;
  text-align: center;
}

.btn-area {
  text-align: center;
  margin-top: 25px;
}

.btn-area button {
  background: #a50000;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-area button:hover {
  background: #7d0000;
}

/* ✅ 반응형 */
@media (max-width: 480px) {
  .warranty-check {
    padding: 0 10px;
  }

  .phone-inputs {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .phone-inputs input {
    width: 100%;
  }

  .btn-area button {
    width: 100%;
  }
}


.not-wrap {
  height: 80vh;
  display: flex;
  justify-content: center; /* 가로 가운데 */
  align-items: center;     /* 세로 가운데 */
}

.not-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
  margin:0 auto;
}
#container_title {display: none !important;}
