@charset "UTF-8";

html {
  height: 100% !important;
}

body {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%) !important;
  min-height: 100vh;
  height: 100%;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

.header-area {
  display: flex;
  z-index: 10000;
  position: relative;
  flex-direction: row;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 8px #888;
  height: 50px;
}

.outer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  box-shadow: 0 0 8px #aaa;
  background-color: #fff;
  border-radius: 2px;
}

@media screen and (max-width: 480px) {
  .outer-height {
    height: 100%;
    width: 100%;
  }
}

@media screen and (min-width: 480px) {
  .outer-height {
    width: 500px;
    height: 600px;
  }
}

.contents-area {
  height: 100%;
}

.form-header-area {
  height: 40%;
  text-align: center;
  padding: 80px 80px 40px 80px;
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.info-area {
  height: 10%;
  color: #475569;
  font-size: 13px;
  text-align: center;
  width: 100%;
  display: inline-block;
  padding: 4px;
  line-height: 1.6;
}

.result-message-area {
  padding: 40px 0;
  height: 10%;
  color: rgb(10, 63, 63);
  font-size: 14px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

.form-area {
  height: 50%;
  padding-bottom: 10px;
}

@media screen and (max-width: 480px) {
  .form-area-width {
    width: 100%;
  }
}

@media screen and (min-width: 480px) {
  .form-area {
    width: 70%;
    margin: auto;
  }
}

.form-unit-area {
  /* padding-bottom: 24px; */
}

.form-label {
  font-weight: 600;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.form-button-area {
  padding-bottom: 16px;
  text-align: center;
}

.form-button-unit-area {
  margin-right: 16px;
  display: inline-flex;
  justify-content: center;
}

.form-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  margin: 0;
  font-size: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 12px 24px;
  min-width: 120px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  color: #ffffff;
  opacity: 0.95;
}

.form-button-disable {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  border: none;
  font-weight: bold;
  padding: 8px 16px;
  background-color: #ccc;
  font-size: 14px;
  color: #fff;
}

.form-link-area {
  padding-bottom: 16px;
  text-align: right;
}

.form-link-unit-area {
  margin-right: 8px;
}

.error-message-area {
  color: #ef4444;
  width: 100%;
  font-size: 12px;
  text-align: center;
  background: #ffffff;
  padding: 0px 8px;
  border-radius: 8px;
  font-weight: 500;
  display: none;
}

.error-message-area:not(:empty) {
  display: block;
}

.form-control.validation-error {
  margin-bottom: 0px;
}

.form-control {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 12px 16px;
  border: 2px solid #e0e7ff;
  transition: all 0.3s ease;
  font-size: 14px;
  background: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: translateY(-1px);
}
