/* _content/PreregisterBetagro/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
body {
    font-family: 'Mitr', sans-serif;
}
a.navbar-brand[b-0qy2anoq97] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-0qy2anoq97] {
  color: #0077cc;
}

.btn-primary[b-0qy2anoq97] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-0qy2anoq97], .nav-pills .show > .nav-link[b-0qy2anoq97] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-0qy2anoq97] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-0qy2anoq97] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-0qy2anoq97] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-0qy2anoq97] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-0qy2anoq97] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
.form-control {
    margin-bottom: 10px;
    border-radius: 15px;
}


select {
    width: 100%;
    padding: 5px;
    margin-bottom: 0px; /* Adjust the margin as needed */
    box-sizing: border-box;
    border-radius: 15px;
    border: 1px solid #D3D3D3; /* Set the border color to gray (#808080) or your desired color */
}

label {
    font-size: 20px;
    /*font-weight: bold;*/
}
h3 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
#icon {
    display: block;
    margin: 0px auto; /* Adjust the margin as needed */
}
#VisitorName::placeholder {
    font-size: 20px; /* Adjust the font size as needed */
}
#VisitorLName::placeholder {
    font-size: 20px; /* Adjust the font size as needed */
}
#VisitorID::placeholder {
    font-size: 20px; /* Adjust the font size as needed */
}
#VisitorCompany::placeholder {
    font-size: 20px; /* Adjust the font size as needed */
}
#VisitorEmail::placeholder {
    font-size: 20px; /* Adjust the font size as needed */
}
#VisitorPhone::placeholder {
    font-size: 20px; /* Adjust the font size as needed */
}
#VisitorLicense::placeholder {
    font-size: 20px; /* Adjust the font size as needed */
}
#VisitorReason::placeholder {
    font-size: 20px; /* Adjust the font size as needed */
}
#HostEmail::placeholder {
    font-size: 20px; /* Adjust the font size as needed */
}
#AppointDate {
    font-size: 18px; /* Adjust the font size as needed */
}
#AppointTime {
    font-size: 18px; /* Adjust the font size as needed */
}
#EndDate {
    font-size: 18px; /* Adjust the font size as needed */
}
#AppointDateTo {
    font-size: 18px; /* Adjust the font size as needed */
}
#EndTime {
    font-size: 18px; /* Adjust the font size as needed */
}
.btnapp {
    background-color: #19872cf5; /* Green background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 5px 10px; /* Some padding */
    text-align: center; /* Centered text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Make the container fit the text */
    font-size: 16px; /* Increase font size */
    margin: 4px 2px; /* Some margin */
    cursor: pointer; /* Pointer/hand icon */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transition */
}

.loader-container {
    display: flex;
    align-items: center; /* จัดตำแหน่ง loader ตรงกลางในแนวตั้ง */
    justify-content: center; /* จัดตำแหน่ง loader ตรงกลางในแนวนอน */
}


/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m: conic-gradient(#0000 10%,#000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}