.wrapper {
    position: relative;
    top: 0;
    height: 100vh;
}

.wrapper.wrapper-full-page {
    height: auto;
    min-height: 100vh;
}

.full-page:before {
    content: "";
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	z-index: 2;
}

.full-page .full-page-background {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
}

.full-page>.content {
    min-height: calc(100vh - 80px);
}

.full-page>.content, .full-page>.footer {
    position: relative;
    z-index: 4;
}

.full-page>.content {
    padding-top: 18vh;
}

footer a {
    color: var(--cros-body-text);
}

@media ( min-width : 992px) {
	.container {
		width: 1170px !important;
	}
			
	.full-page>.content {
		padding: 5vh 0px;
        display: flex;
        min-height: calc(100vh - 8vh);
        align-items: center;
	    /* 100 vh - footer */
	}

	.full-page>.footer {
	    padding: 2vh 0px;
	    height: 8vh;
	}
}

@media ( max-width : 767px) {	
    .full-page .content .form-container {
        padding: 0px 20px;
    }

	.footer .container {
	    display: flex;
	    flex-direction: column;
	    gap: 8px;
	}
	
	.footer .container .pull-left {
	    float: left !important;
	}
	
	.footer ul {
    	justify-content: space-between;
	}
	
	.footer .copyright {
		text-align: center;
	}
}


/* select language flags */
.lang-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 9999;
}

.lang-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.lang-fab img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.lang-options {
  display: none;
  position: absolute;
  bottom: 60px;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  padding: 5px;
}

.lang-options img {
  width: 28px;
  height: 28px;
  margin: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lang-options img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .lang-fab {
    top: 20px;
  }

  .lang-options {
    bottom: -90px;
  }
}
