@charset "UTF-8";
#main .title {
  color: #0642AD;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
#main .content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 768px) {
  #main .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: normal;
  }
}
#main .form-column {
  flex: 1;
  min-width: 0;
}
#main .guide-column {
  flex: 1;
  min-width: 0;
}
#main .guide-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  border: 2px solid #d6e7ff;
  border-radius: 12px;
  padding: 25px;
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 0 4px 15px rgba(6, 66, 173, 0.1);
  position: relative;
}
#main .guide-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0642AD 0%, #4285f4 100%);
  border-radius: 12px 12px 0 0;
}
#main .guide-section .guide-title {
  color: #0642AD;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
  position: relative;
}
#main .guide-section .guide-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #0642AD;
  border-radius: 2px;
}
#main .guide-section .guide-intro {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 500;
}
#main .guide-section .guide-steps {
  background: white;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
#main .guide-section .guide-steps li {
  color: #2c3e50;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 8px;
  position: relative;
}
#main .guide-section .guide-steps li::marker {
  color: #0642AD;
  font-weight: 700;
  font-size: 16px;
}
#main .guide-section .guide-steps li:last-child {
  margin-bottom: 0;
}
#main .guide-section .privacy-note {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #f39c12;
  border-left: 5px solid #f39c12;
  padding: 12px 15px;
  margin: 0;
  font-size: 13px;
  color: #8b4513;
  line-height: 1.5;
  border-radius: 8px;
  font-weight: 500;
}
#main .guide-section .privacy-note::before {
  content: "🔒 ";
  margin-right: 5px;
}
@media all and (max-width: 768px) {
  #main .guide-section {
    padding: 20px 15px;
  }
  #main .guide-section .guide-title {
    font-size: 18px;
  }
  #main .guide-section .guide-title::after {
    width: 40px;
    height: 2px;
  }
  #main .guide-section .guide-intro {
    font-size: 14px;
  }
  #main .guide-section .guide-steps {
    padding: 15px 30px;
  }
  #main .guide-section .guide-steps li {
    font-size: 13px;
    padding-left: 5px;
  }
  #main .guide-section .privacy-note {
    font-size: 12px;
    padding: 10px 12px;
  }
}
#main form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8f0ff;
  height: -moz-fit-content;
  height: fit-content;
}
@media all and (max-width: 768px) {
  #main form {
    padding: 20px;
  }
}
#main form .title-in {
  font-weight: 700;
  color: #0642AD;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
#main form .title-in::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #0642AD;
}
#main form .info {
  margin-bottom: 20px;
}
#main form .info label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 15px;
}
#main form .info input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e8f0ff;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}
#main form .info input:focus {
  outline: none;
  border-color: #0642AD;
  box-shadow: 0 0 0 3px rgba(6, 66, 173, 0.1);
}
#main form .info input:hover {
  border-color: #4285f4;
}
#main form #check_status {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}
#main form #check_status:hover {
  background: linear-gradient(135deg, #e60000 0%, #b30000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}
#main form #check_status:active {
  transform: translateY(0);
}/*# sourceMappingURL=checking.css.map */