@font-face {
  font-family: 'CustomFont';
  src: url('{{ asset('fonts/Montserrat-Regular.ttf') }}') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* GLOBAL */
html, body {
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  font-family: 'CustomFont', sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.site-header {
  background: transparent;
  color: #22558c;
  flex-shrink: 0;
  margin: 0;
  text-align: center;
}

.site-header .container {
  border-bottom: 1px solid #22558c;
  max-width: 70%;
  margin: 0 auto;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.icon-left,
.icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.icon-svg {
  display: block;
  height: 40px;
  width: 40px;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* MAIN */
.site-main {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* FOOTER */
.site-footer {
  flex-shrink: 0;
  padding: 1rem 0;
  text-align: center;
  background: transparent;
  color: #22558c;
}

.site-footer .container {
  border-top: 1px solid #22558c;
  max-width: 70%;
  margin: 0 auto;
  padding: 15px;
}

.container-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: center;
}

.container-footer-logo {
  justify-self: start;
}

.container-footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.container-footer-text {
  font-size: 0.8rem;
}

.container-footer-social {
  justify-self: end;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.container-footer-social img {
  height: 28px;
  width: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.container-footer-social img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .container-top {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 12px;
  }

  .container-footer-logo,
  .container-footer-social {
    justify-self: center;
  }

  .container-footer-social {
    justify-content: center;
  }

  .container-footer-social img {
    height: 30px;
    width: 30px;
  }
}

/* FORM */
.custom-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  height: 100%;
  width: 100%;
  max-width: 300px;
  border-radius: 0 0 25px 25px;
}

.form-wrapper {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: visible;
}

.form-top-bar {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #22558c;
  opacity: 0.75;
  z-index: 1;
}

.form-body {
  padding: 10px;
}

.form-group {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.form-group > .custom-input {
  max-width: 380px;
  width: 100%;
}

.input-icon-wrapper {
  position: relative;
  width: 100%;
}

.custom-input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s ease;
  box-sizing: border-box;
  height: 35px;
}

.custom-input:focus {
  border-color: #5e72e4;
  outline: none;
  box-shadow: 0 4px 12px rgba(94, 114, 228, 0.25);
}

.input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  pointer-events: none;
}

.btnFrontend {
  padding: 12px 24px;
  background-color: #22558c;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.btnFrontend:hover {
  background-color: #fcd703;
  color: #22558c;
}

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

/* POPUP */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #f4f5ed;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
  max-width: 300px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInScale 0.3s ease-in-out;
  overflow: hidden;
}

.popup-content img {
  width: auto;
  height: 200px;
  object-fit: cover;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* SIDEBAR */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 10000;
}

.sidebar-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1c4673;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.sidebar-header img {
  height: 40px;
  width: auto;
}

.close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;

}

.sidebar-item {
  width: 70%;
  border-bottom: 2px solid #f2f2f2;
}

.sidebar-item a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  color: black;
  transition: all 0.3s ease;
}

.sidebar-item a:hover {
  padding-left: 20px;
}

.sidebar-center {
  margin-left: 15px;
}

.sidebar-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-right-container{
	display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
}

.sidebar-right-title {
  grid-column: span 5 / span 5;
}

.sidebar-right-img {
    grid-column: span 4 / span 4;
    grid-row: span 4 / span 4;
    grid-row-start: 2;
}

.div4 {
    grid-row: span 3 / span 3;
    grid-column-start: 5;
    grid-row-start: 3;
}



/* FORM LOGO */
.form-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-logo {
  margin-bottom: 5%;
  text-align: center;
}

.form-logo img {
  max-width: 240px;
  height: auto;
}

