/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: OpenSans-Regular;
  src: url('../fonts/openSans/OpenSans-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: OpenSans-Bold;
  src: url('../fonts/openSans/OpenSans-Bold.ttf'); 
}

@font-face {
  font-family: OpenSans-SemiBold;
  src: url('../fonts/openSans/OpenSans-SemiBold.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

@font-face {
  font-family: BebasNeue-Regular;
  src: url('../fonts/bebasNeue/BebasNeue-Regular.ttf');
}

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf');
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px; 
  padding: 0px; 
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins-Regular', Poppins, Arial, sans-serif;
}

/*---------------------------------------------*/
a {
  font-family: 'Poppins-Regular', Poppins, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: #333333;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
  margin: 0px;
}

p {
  font-family: 'Poppins-Regular', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul, li {
  margin: 0px;
  list-style-type: none;
}

/*---------------------------------------------*/
input {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input::-webkit-input-placeholder { color: #999999;}
input:-moz-placeholder { color: #999999;}
input::-moz-placeholder { color: #999999;}
input:-ms-input-placeholder { color: #999999;}

textarea::-webkit-input-placeholder { color: #999999;}
textarea:-moz-placeholder { color: #999999;}
textarea::-moz-placeholder { color: #999999;}
textarea:-ms-input-placeholder { color: #999999;}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ utility ]*/

/*==================================================================
[ Text ]*/
/*==================================================================
[ Text ]*/
.txt1 {
  font-family: 'Poppins-Regular', Poppins, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #0054A6; /* Blue from municipal colors */
}

.txt2 {
  font-family: 'Poppins-', Poppins, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #F28C38; /* Orange from municipal colors */
  text-decoration: underline;
}

.txt2:hover {
  color: #00A651; /* Green on hover for contrast */
}

/* Custom link style for video and app links */
.link-custom {
  font-family: Poppins-Medium, Poppins, Arial, sans-serif;
  font-size: 14px;
  color: #00A651; /* Green for links */
  text-decoration: none;
  transition: color 0.3s;
}

.link-custom:hover {
  color: #F28C38; /* Orange on hover */
}

/* Style for app links */
.app-link {
  display: inline-block;
  margin: 5px;
  transition: transform 0.3s;
}

.app-link:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Ensure w-full and p-t-27 work with the new layout */
.w-full {
  width: 100%;
}

.p-t-27 {
  padding-top: 27px;
}
/*==================================================================
[ Size ]*/
.size1 {
  width: 355px;
  max-width: 100%;
}

.size2 {
  width: calc(100% - 43px);
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
  height: 100vh; /* Ensure full viewport height */
}

.wrap-login100 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  flex-direction: row;
}

/*==================================================================
[ login more ]*/
.login100-more {
    width: 50%;
    background-color: #f9f9f9; /* Light background for post panel */
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 20px;
    overflow-y: auto; /* Enable scrolling if content exceeds height */
}

/* Remove .login100-more::before (since it's no longer an image) */
.login100-more::before {
    display: none; /* Remove the background image */
}

/* New styles for post panel */
.post-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-container {
    flex: 1;
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.post-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.post-title {
    font-family: 'BebasNeue-Regular', Bebas Neue, Arial, sans-serif;
    font-size: 20px;
    color: #0054A6;
    margin: 10px 0;
}

.post-description {
    font-family: 'Poppins-Regular', Poppins, Arial, sans-serif;
    font-size: 14px;
    color: #0054A6;
    margin-bottom: 10px;
}

.post-date {
    font-family: 'Poppins-Regular', Poppins, Arial, sans-serif;
    font-size: 12px;
    color: #999999;
    text-align: right;
}


/*==================================================================
[ Form ]*/

.login100-form {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  padding: 65px;
  background-color: #fff; /* Optional: Add background for contrast */
}

.login100-form-title {
  font-family: 'BebasNeue-Regular', Bebas Neue, Arial, sans-serif;
  font-size: 2rem;
  color: #3F63E8;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
  display: block;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border: 1px solid #e6e6e6;
}

.rs1-wrap-input100,
.rs2-wrap-input100 {
  width: 100%;
}

.rs2-wrap-input100 {
}

.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-family: 'Poppins Regular', Poppins, Arial, sans-serif;
  font-size: 18px;
  color: #666666;
  line-height: 1.2;
  padding: 0 25px;
}

input.input100 {
  height: 55px;
}

/*---------------------------------------------*/

.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid #333333;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scaleX(1.1) scaleY(1.3);
  -moz-transform: scaleX(1.1) scaleY(1.3);
  -ms-transform: scaleX(1.1) scaleY(1.3);
  -o-transform: scaleX(1.1) scaleY(1.3);
  transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-weight: 100;
  border-radius: 3px;
  background: #3F63E8;
  font-family: 'BebasNeue-Regular', Bebas Neue, Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  background: #333333;
  color: #fff;
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
  .login100-form {
    width: 60%;
  }

  .login100-more {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .login100-form {
    width: 100%;
    padding: 30px;
  }

  .login100-more {
    width: 100%;
    height: 200px; /* Reduced height for smaller screens */
  }
}

@media (max-width: 576px) {
  .login100-form {
    padding: 15px;
  }

  .rs1-wrap-input100,
  .rs2-wrap-input100 {
    width: 100%;
  }

  .rs2-wrap-input100 {
    border-left: 1px solid #e6e6e6;
  }
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;
  font-family: 'Poppins Regular', Poppins, Arial, sans-serif;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}