:root {
  --white900: #fff;
  --blueGray100: #eceff1;
  --green400: #8a0;
  --blue400: #2096bc;
  --blue800: #083c79;
  --gray100: lightgray;
  --blue60: #f0f6ff;
  --blue70: #dfebfb;
  --blue100: #768f97;
  --green100: #747964;
  --blue50: #f0fffc;
  --blue80: #dffbf7;
  --aqua100: #a0f8e9;
  --aqua400: #14b89c;
  --aqua500: #009393;
  --aqua800: #235d50;
  --aqua900: #093e35;
  --green30: #eaefea;
  --s: 30px;
  --c1: #f0fffc;
  --c2: #dffbf7;
}

.intro {
  background-color: var(--aqua900);
  border-radius: 20px;
}

body {
  background-color: var(--blue50);
}

#form img {
  background-color: var(--white900);
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  margin: 10px;
  padding: 2px;
}

.file-input-hidden {
  opacity: 0;
  z-index: -1;
  width: .1px;
  height: .1px;
  position: absolute;
  overflow: hidden;
}

.custom-file-label {
  color: #fff;
  cursor: pointer;
  background-color: #28a745;
  border-radius: 5px;
  padding: 10px 20px;
  transition: background-color .3s;
  display: inline-block;
}

.custom-file-label:hover {
  background-color: #218838;
}

.file-name-display {
  color: #555;
  margin-left: 10px;
  font-style: italic;
}

.user-img {
  background-color: var(--green30);
}

tbody tr:nth-child(odd) {
  background-color: #fff;
}

tbody tr:nth-child(2n) {
  background-color: var(--green30);
}

td, th {
  padding: 10px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

input[type="text"], input[type="email"], textarea, select {
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding: 8px;
  font-size: 16px;
}

input:focus, textarea:focus {
  border-color: #008751;
  outline: none;
  box-shadow: 0 0 5px #0087514d;
}

.sp-error {
  color: red;
  font-size: .8em;
  display: none;
}

textarea:invalid, input:invalid {
  border-color: red;
}

input:invalid ~ .sp-error, textarea:invalid ~ .sp-error {
  display: block;
}

td:first-child {
  white-space: nowrap;
  width: 1%;
  padding-right: 15px;
}

label {
  color: var(--aqua900);
  margin-bottom: 8px;
  font-weight: bold;
}

.role-option input[type="radio"] {
  display: none;
}

.role-option label {
  border: 1px solid var(--blue100);
  cursor: pointer;
  border-radius: 20px;
  padding: 10px;
  display: block;
}

.role-option .role-info {
  color: var(--aqua800);
  margin-top: 8px;
  font-size: clamp(1rem, 1vw + 1rem, 1.5rem);
  font-weight: normal;
  display: block;
}

.role-option label img {
  width: 50px;
  height: auto;
  margin: 0 auto 5px;
  display: block;
}

.role-option input[type="radio"]:checked + label {
  background-color: var(--blue50);
  border-color: var(--aqua900);
}

#btnSubmit {
  background-color: var(--aqua800);
  border-radius: 12px;
  width: 100%;
  max-width: 650px;
  margin: 40px auto;
  padding: 15px 30px;
  font-weight: bold;
  transition: background-color .3s;
  display: block;
}

#btnSubmit:hover {
  background-color: var(--aqua400);
  cursor: pointer;
  color: var(--aqua900) !important;
}

.t-center {
  text-align: center;
}

#loginRequest {
  z-index: 10;
  background-color: #161616b3;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

#loginRequest .content {
  background-color: var(--white900);
  text-align: center;
  border-radius: 10px;
  height: fit-content;
  margin-top: 60px;
  padding: 20px;
}

#dLogin, #inLogin {
  display: none;
}

@media (width <= 480px) {
  .vertical-table thead {
    display: none;
  }

  tr, th, td {
    display: block;
  }

  .user-img .upload-container {
    flex-direction: column;
    display: flex;
  }
}
/*# sourceMappingURL=apply.db78ae86.css.map */
