html,
body {
  height: 100%;
}



/* Color Scheme */
:root {
  --primary-color: #003366;
  --secondary-color: #FF6B6B;
  --accent-color: #F2F2F2;
  --text-color: #ffffff;
}

body {
  background-color: var(--accent-color);
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
}

.navbar, .footer {
  background-color: var(--primary-color);
}

.nav-link:hover {
  color: var(--secondary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* Spacing and Layout */
.container, .navbar, .footer {
  padding: 20px;
}

/* Forms */
.form-control {
  border: 1px solid var(--primary-color);
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}



.intro-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 80% top;
    min-height: 300px;
}

@media (max-width: 991px) {
    .intro-image {
        background-position: center;
        margin-top: 30px;
    }
}

.intro-1 {
	font-size: 70px;
}
.intro-2 {
	margin-top: 20px;
	font-size: 40px;
	text-indent: -100em;
	overflow: hidden;
	background: transparent url("/theme/img/logo-white.png") 5px 50% no-repeat;
	background-size: contain;
	margin-bottom: 50px;
}

.btn-intro {
	background: #ffffff;
	border-radius: 50px;
	margin-top: 30px;
}
.btn-intro:hover {
	border-color: #ffffff;
	color: #ffffff;
	background: none;
}
.btn-intro-alt {
	border-color: #ffffff;
	color: #ffffff;
	background: none;
	border-radius: 50px;
	margin-top: 30px;
}
.btn-intro-alt:hover {
	border-color: #ffffff;
	color: #212529;
	background: #ffffff;
}

.navbar-brand {
	text-indent: -100em;
	overflow: hidden;
	background: transparent url("/theme/img/logo-white.png") 0% 50% no-repeat;
	background-size: contain;
	width: 230px;
}


     .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
      }

      @media (min-width: 768px) {
        .bd-placeholder-img-lg {
          font-size: 3.5rem;
        }
      }

      .b-example-divider {
        height: 3rem;
        background-color: rgba(0, 0, 0, .1);
        border: solid rgba(0, 0, 0, .15);
        border-width: 1px 0;
        box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
      }

      .b-example-vr {
        flex-shrink: 0;
        width: 1.5rem;
        height: 100vh;
      }

      .bi {
        vertical-align: -.125em;
        fill: currentColor;
      }

      .nav-scroller {
        position: relative;
        z-index: 2;
        height: 2.75rem;
        overflow-y: hidden;
      }

      .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
      }




        #orderForm {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        #orderForm .form-control {
            flex-grow: 1;
            margin-right: 10px;
        }


.image-preview {
	padding: 10px;
	background: url("/theme/img/trans-grid.jpg");
	width: 300px;
}

.form-signin {
  max-width: 330px;
  padding: 15px;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}




#orderCode[type="text"] {
    text-transform: uppercase;
}

/* This is to ensure the placeholder text remains unaffected */
#orderCode::placeholder {
    text-transform: none;
}

    .form-floating .form-control.hollow:focus ~ label,
    .form-floating .form-control.hollow:not(:placeholder-shown) ~ label {
        color: #000; /* Set the color to black or any other visible color */
        opacity: 1;
    }

    .form-floating label {
        color: #000; /* Set the color to black or any other visible color */
        opacity: 1;
    }