body {
    /* Add your body styles */
    margin: 0;
    padding: 0;
}

.loading-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


* {
    font-family: 'Anuphan', sans-serif !important;
    /* font-size: 1.1em; */
  }
  
  body {
    background-color: #ebdc87;
  }
  
  .logo {
    max-width: 200px;
    margin: auto;
  }
  
  .card-title {
    background-color: #d2c61b;
    color: #fff;
  }
  
  h6.line span {
    background: #fff;
    padding: 0 10px;
  }
  
  h6.line {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #808080;
    line-height: .1em;
    margin: 10px 0 20px;
  }
  
  .footer {
    /* position: absolute; */
    /* bottom: 0; */
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    background: #ffffff;
  }
  
  
  
  /* ************************* */
  

  
  .field-validation-valid {
    font-size: 14px;
    color: red;
    display: block;
  }
  
 