﻿/* Primary colors */
/* Secondary colors */
/* New Lightened Colors */
/*Box Shaddow*/
/*hover over color for Account info divs and Historical Bills*/
/*Divider*/
/*panel border*/
/*Wyse Colors*/
/*General*/
.test-box {
  z-index: 2000;
  position: fixed;
  top: 35px;
  top: 50px;
  right: 0px;
  background-color: #F27071 !important;
  color: #263746;
  border-radius: 0 4px 4px 0;
  -webkit-box-shadow: 2px 0 0 5px rgba(0, 0, 0, 0.16), 2px 0 0 10px gba(0, 0, 0, 0.12);
  box-shadow: 2px 0 0 5px rgba(0, 0, 0, 0.16), 2px 0 0 10px gba(0, 0, 0, 0.12);
  opacity: 0.8;
}

.test-box p {
  margin: 0;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 0;
}

body {
  background-color: #263746;
}

.left-side-signin {
  float: left;
  height: 100vh;
}
@media (max-width: 1199px) {
  .left-side-signin {
    float: none;
    min-height: auto;
  }
}

.background-image {
  min-height: 100vh;
  background: url(../../Images/flagPole.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .background-image {
    background: none;
    min-height: auto;
  }
}

.card {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}

.card-body {
  border: none;
}

.card-footer {
  border: none;
}

.login-button {
  color: #263746;
  background-color: #87D4EB;
  font-size: 1em;
  font-weight: bold;
}

.first-time-login {
  color: #87D4EB !important;
  background-color: transparent;
  border: 2px solid #87D4EB;
  font-size: 1em;
  font-weight: bold;
}

.login-button:hover, .login-button:focus {
  background-color: #C3C6C8;
  color: #263746 !important;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.5);
  border: none;
}

.first-time-login:hover, .first-time-login:focus {
  background-color: #C3C6C8;
  color: #263746 !important;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.5);
  border: 2px solid black;
}

.d-flex > a {
  margin: 10px !important;
  color: #87D4EB;
}
.d-flex > a:hover, .d-flex > a:focus {
  color: #C3C6C8;
}

/*#region Sticky notification banner styles */
#termsNotification {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  width: calc(100vw - 30px);
  background-color: #fff;
  border-top: 2px solid #1572b8;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.terms-notification-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.terms-notification-text {
  flex: 1;
  font-size: 14px;
  color: #333;
}

.terms-notification-text p {
  margin: 0 0 8px 0;
}

.terms-notification-text p:last-child {
  margin-bottom: 0;
}

.terms-notification-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.terms-notification-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.terms-accept-btn {
  background-color: #5cb85c;
  color: white;
}

.terms-accept-btn:hover {
  background-color: #4cae4c;
}

.terms-close-btn {
  background-color: transparent;
  color: #666;
  padding: 8px 12px;
}

.terms-close-btn:hover {
  color: #333;
}

@media screen and (max-width: 768px) {
  .terms-notification-content {
    flex-direction: column;
    align-items: stretch;
  }
  .terms-notification-actions {
    justify-content: center;
  }
}
/*#endregion Sticky notification banner styles */
