html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/** Begin _Layout page **/
.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem #000000;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}
/** End _Layout page **/

/** Begin error page **/

.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.error-box {
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #dc3545;
    border-radius: 8px;
    box-shadow: 0 4px 6px #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.error-box h1 {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 10px;
}

.error-list {
    list-style-type: disc;
    margin: 20px 0;
    padding-left: 20px;
    text-align: left;
}

.error-list li {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.5;
}

/** End error page **/

/** Begin result page **/

.result-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.result-box {
    max-width: 600px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.result-box.success {
    background-color: #e8f7e8;
    border: 1px solid #4caf50;
}

.result-box.failed {
    background-color: #fbe8e8;
    border: 1px solid #f44336;
}

.result-box h1 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.result-box.success h1 {
    color: #4caf50;
}

.result-box.failed h1 {
    color: #f44336;
}

.result-box p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.redirect-button {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.result-box.success .redirect-button {
    background-color: #4caf50;
    color: white;
}

.result-box.failed .redirect-button {
    background-color: #f44336;
    color: white;
}

.redirect-button:hover {
    opacity: 0.9;
}

/** End result page **/