@charset "utf-8";


body, html{
	width: 100vw;
	height: 100vh;
	overflow: hidden !important;
}

.container{
  width: 90%; /* Full width for small screens */
	height: 100vh;
	align-content: center;
	padding-left: 0.73em;
}

.Logo{
	height: 2em;
	display: block;
  	margin-left: auto;
  	margin-right: auto;
	padding-top: 8em;
	padding-bottom: 4em;
}

.B1{
	background-color: #00C3B1;
	font-family: "Montserrat", serif;
	font-size: 0.7em;
	text-align: center;
	height: 3em;
	width: 100%; /* Ensure it spans the full width */
	line-height: 3em; /* Center the text vertically */	
}

.Click{
	color: white;
	text-decoration: underline;
	font-weight: bold;
}

 /*Phone number part left side*/
.row1{
	display: flex;
	flex-direction: row;
	gap: 2%;
}

.box1{
	float: left;
	display: flex;
	gap: 0.625em;
	align-items: center;
	border: 1px solid #A4A4A4; /* Gray border around the entire container */
    border-radius: 0.3125em; /* Rounded corners */
	padding-left: 0.5em;
	padding-right: 0.5em;
    background-color: #fff; /* White background */
    width: fit-content; /* Adjust width to content */
	margin-top: 1.25em;
	height: 2.5em;
}

.flag{
	max-height: 0.9375em;
}

.number{
	font-family: "Montserrat", bold;
	font-weight: bold;
	font-size: 0.625em;
}

.arrow{
	max-height: 0.5em;
}

 /*Phone number part right side*/

.box2{
	float: right;
	display: flex;
	border: 1px solid #A4A4A4; /* Gray border around the entire container */
    border-radius: 0.3125em; /* Rounded corners */
	width: 90%;
	background-color: #fff; /* White background */
	margin-top: 1.25em;
	height: 2.5em;
}

.mn{
	font-family: "Montserrat", bold;
	font-weight: bold;
	font-size: 0.7em;
	color: #D9D9D9;
	float: left;
	padding-left: 1em;
}

.box3{
	font-family: "Montserrat", bold;
	font-weight: bold;
	font-size: 0.7em;
	color: #D9D9D9;
	padding-left: 10.2em;
	padding-bottom: 1em;
    text-align: left;
}

 /*Password*/

.box4{
	border: 1px solid #A4A4A4; /* Gray border around the entire container */
    border-radius: 5px; /* Rounded corners */
    background-color: #fff; /* White background */
	gap: 12.5em;
	height: 2em;
	align-items: center;
	margin-bottom: 1.5em;
	width: 90%;
	display: flex; /* Use flex for alignment */
    justify-content: space-between;
    padding: 0 1em; /* Add padding inside the box */
}
.password{
	font-family: "Montserrat", bold;
	font-weight: bold;
	font-size: 0.7em;
	color: #D9D9D9;
	padding-left: 0.625em;
}

.eye{
	float: right;
	max-height: 2.5em;
	padding-left: 3em;
	margin-top: -2.5em;
	margin: 0; /* Remove margins */
}

 /*Log in Button*/

.login {
	background-color: #00C3B1; 
	border: none;
	color: white;
	text-align: center;
	font-family: "Montserrat", bold;
	font-size: 0.625em;
	transition-duration: 0.4s;
	cursor: pointer;
	border-radius: 0.3125em;
	font-weight: bold;
	width: 100%;
	height: 3.5em;
	display: block;
	margin: auto;
}

.login:hover {
  background-color: #A4A4A4;
  color: white;
}

.login:active {
  background-color: #14DDCA;
  color: white;
}

.forgot{
	font-family: "Montserrat", bold;
	font-size: 0.625em;
	font-weight: bold;
	padding-top: 1.25em;
	text-align: center;
	padding-bottom: 50em;
}

#slideup {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
    from {
        top: 100%;
    }
    to {
        top: 0;
    }
}








