body {
	display: flex;	
    min-height: 100vh;
}

.card {
    box-shadow: none;
}

.left-side {
	background-color: var(--cros-card-bg);
	display: flex;
	justify-content: center;
	flex: 0 0 500px;
	/* Adjust width as needed */
	position: relative;
}

.right-side {
	flex: 1;
	background-size: cover;
	filter: brightness(0.2);
}

.form-container {
	width: 100%;
    padding: 20px;
    z-index: 1;
}

.code-input {
    width: 50px;
    height: 50px;
}

.card .logo {
	margin-bottom: 40px;
}

.card .card-content {
	gap: 24px;
}

footer {
    color: var(--cros-card-text);
    position: absolute;
    padding: 2vh 48px;
    bottom: 0;
    left: 0;
    right: 0;
}

@media ( max-width : 767px) {
	body {
		flex-direction: column;
    	position: relative;	
	}
	
	.left-side {
	    background-color: transparent;
		flex: 0 0 100%;
		position: relative;
		align-items: center;
		z-index: 4000;
	}
	
	.left-side::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		filter: brightness(0.4);
		z-index: 0;
	}
	
	#page_form {
		padding-top: 18vh;
	    display: flex;
	    align-items: center;
	}
	
	.card .card-content {
	    gap: 18px;
	}
	
	.right-side {
	    background-size: cover;
        background-position: center center;
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
	}

	.form-container {
		border-radius: 6px;
        padding: 0px 20px;
	}
					
	.footer {
		position: relative;
		width: 100%;
		color: var(--cros-body-text);
		padding: 2vh 0px;
	    height: 10vh;
	    display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 8px;
	}
	
	.footer a {
		color: var(--cros-body-text);
	}
	
	.footer .copyright {
		text-align: center;
	}
	
	.footer ul {
    	justify-content: space-between;
	}
}
/*end of the mobile css*/


/* 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;
  }
}
