.banner {
  position: relative;
  width: 100%;
}

.banner .hero {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.banner .cover {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 2541/480;
  background: rgba(26, 35, 126, 0.2);
}
@media screen and (max-width: 860px) {
  .banner .cover {
    aspect-ratio: 28/9;
  }
}

.title-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 30px;
    padding-top: 18px;
    padding-bottom: 18px;
    background-color: #F5F9FC;
}

.title {
    font-size: var(--font-size-large);
    color: #000;
    margin: 0 auto;
    width: 20%;
    text-align: center;
    /*text-decoration: underline;*/
}

.tips {
    font-size: var(--font-size-big);
    color: #000;
    text-align: center;
    margin: 32px auto;
}

/* Loading Spinner */
.spinner {
    width: 50px;
    height: 50px;
    position: relative;
    margin: 20px auto;
}

.spinner-segment {
    position: absolute;
    width: 4px;
    height: 15px;
    background-color: #007AFF;
    border-radius: 2px;
    left: 23px;
    transform-origin: 2px 25px;
}

@keyframes spin {
    0% { opacity: 1; }
    100% { opacity: 0.15; }
}

/* Create 12 spinner segments */
.spinner-segment:nth-child(1) { transform: rotate(0deg); animation: spin 1.2s linear infinite; animation-delay: 0s; }
.spinner-segment:nth-child(2) { transform: rotate(30deg); animation: spin 1.2s linear infinite; animation-delay: -1.1s; }
.spinner-segment:nth-child(3) { transform: rotate(60deg); animation: spin 1.2s linear infinite; animation-delay: -1.0s; }
.spinner-segment:nth-child(4) { transform: rotate(90deg); animation: spin 1.2s linear infinite; animation-delay: -0.9s; }
.spinner-segment:nth-child(5) { transform: rotate(120deg); animation: spin 1.2s linear infinite; animation-delay: -0.8s; }
.spinner-segment:nth-child(6) { transform: rotate(150deg); animation: spin 1.2s linear infinite; animation-delay: -0.7s; }
.spinner-segment:nth-child(7) { transform: rotate(180deg); animation: spin 1.2s linear infinite; animation-delay: -0.6s; }
.spinner-segment:nth-child(8) { transform: rotate(210deg); animation: spin 1.2s linear infinite; animation-delay: -0.5s; }
.spinner-segment:nth-child(9) { transform: rotate(240deg); animation: spin 1.2s linear infinite; animation-delay: -0.4s; }
.spinner-segment:nth-child(10) { transform: rotate(270deg); animation: spin 1.2s linear infinite; animation-delay: -0.3s; }
.spinner-segment:nth-child(11) { transform: rotate(300deg); animation: spin 1.2s linear infinite; animation-delay: -0.2s; }
.spinner-segment:nth-child(12) { transform: rotate(330deg); animation: spin 1.2s linear infinite; animation-delay: -0.1s; }

.loading-text {
    font-size: 20px;
    /*margin: 10px 0 20px;*/
    margin: 0 auto;
    text-align: center;
}

.info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 10px 15px;
    border-bottom: 1px solid #eee;
}

.form{
    margin: 50px auto;
}

.form-group {
    margin-bottom: 20px;
}
