@charset "utf-8";

/* font-family: 'Lato', sans-serif;
font-family: 'Signika', sans-serif; */
body {
	overflow-x: hidden;
	margin: 0;
}

p {
	font-family: 'Lato', sans-serif;
}

h1, h3, h2 {
	font-family: 'Signika', sans-serif;
	font-weight: 400;
}

/*********** ANIMATION CSS EDIT-ION***********/

#logoanim {
	opacity: 0;
}

#signuppageanim {
	display: none;
}

#loginpageanim {
	display: none;
}

#signuppageanim {
  transition: transform 0.5s ease;
}

.slide-in {
  transform: translateX(0%);
}

.slide-out {
  transform: translateX(100%);
}












/* FIRST PAGE CSS */

.firstpage{
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #FFFCF5;
}

.guesttxt {
	float: right;
	position: relative;
	top: -165px; 
  	right: -115px; 
	text-decoration: none;
	color: #727171;
}

.logo {
	padding: 50px;
}

.btn-primary {
	background-color: #FFB45B;
	border-radius: 46px;
	width: 309px;
	height: 48px;
	border: none;
	position: relative;
	font-size: 20px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	font-family: 'Signika', sans-serif;
}

.editbtn1 {
	transform: translateY(370%);
}

.acctxt {
	transform: translateY(880%);
}	

/* SIGN UP PAGE CSS*/

.signuppage {
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	background-image: url("images/Signup_BG.png");
	background-size: cover;
  	background-repeat: no-repeat;
	background-position: center;	
	justify-content: center;
	align-items: center; 
}

.backicon {
	float: left;
	position: absolute; 
	width: 17px;
	height: 31px;
	top: 55px; 
  	left: 30px; 
}

.guesttxt2 {
	position: absolute;
	top: 50px; 
  	right: 20px; 
	text-decoration: none;
	color: #727171;
}

.signtxt {
	position: absolute;
	top: 190px;
	left: 30px;
	font-weight: 400; 
	align-self: flex-start;
}

.inputedit {
	position: relative;
	text-align: left;
	align-self: center;
	top: 50px;
	margin-left: -2%;
}

.termstxt {
	text-align: center;
	transform: translateY(520%);
}

.userinput {
	height: 13%;
	width: 80vw; 
    padding: 5px 5px;
	flex-direction: column;
	border-radius: 8px;
	border: 1px #D9D9D9 solid; 
	font-size: 12pt;
	font-family: 'Lato', sans-serif;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	
}

.acctxt2 {
	transform: translateY(950%);
}	

.editbtn2 {
	transform: translateY(400%);
}

/* LOG IN PAGE CSS */

.loginpage {
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	background-image: url("images/Signup_BG.png");
	background-size: cover;
  	background-repeat: no-repeat;
	background-position: center;	
	justify-content: center;
	align-items: center; 
}

.backicon2 {
	float: left;
	position: absolute; 
	width: 17px;
	height: 31px;
	top: 55px; 
  	left: 30px; 
}

.guesttxt3 {
	position: absolute;
	top: 50px; 
  	right: 20px; 
	text-decoration: none;
	color: #727171;
}

.signtxt2 {
	position: absolute;
	top: 190px;
	left: 30px;
	font-weight: 400; 
	align-self: flex-start;
}

.inputedit2 {
	position: relative;
	text-align: left;
	align-self: center;
	top: 10px;
	margin-left: -2%;
}

.userinput2 {
	height: 13%;
	width: 80vw; 
    padding: 5px 5px;
	flex-direction: column;
	border-radius: 8px;
	border: 1px #D9D9D9 solid; 
	font-size: 12pt;
	font-family: 'Lato', sans-serif;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.editbtn3{
	transform: translateY(580%);
}

.acctxt3 {
	transform: translateY(1400%);
}

/* CHECKBOX */


.checkbox-input {
  	display: none;
}

.checkbox-label {
  	position: relative;
  	padding-left: 30px;
	top: -70px;
	left: -110px;
}

.checkbox-label::before {
  	content: "";
  	position: absolute;
  	left: 0;
  	top: -3px;
  	width: 20px;
  	height: 20px;
 	border: 2px solid #ccc;
  	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.60); 
	box-shadow: 0px 3px 5px rgba(45.90, 45.90, 66.30, 0.08)
}

.checkbox-label::after {
  	content: "";
  	position: absolute;
  	left: 8px;
  	top: -1px;
  	width: 6px;
  	height: 12px;
  	border: 2px solid #000;
  	border-top: none;
  	border-right: none;
  	transform: rotate(225deg) scaleY(-1);
  	display: none;
}

.checkbox-input:checked + .checkbox-label::after {
  	display: block;
}

.checkbox-text {
	font-family: 'Lato', sans-serif;
	font-weight: 500;
	font-size: 12pt;
	transform: translateY(-460%) translateX(-75%);
}

.forgot-password {
  	color: blue;
  	text-decoration: underline;
	font-family: 'Lato', sans-serif;
	font-weight: 500;
	font-size: 10pt;
	transform: translateY(-670%) translateX(100%);
}

.forgot-password:hover {
  	color: darkblue;
}

.underlined {
	text-decoration: underline;
}

/* THIS IS HOMEPAGE CSS */

.homepage {
	display: flex;
	flex-direction: column;
	background-image: url("images/Home_BG.png");
	background-size: cover;
  	background-repeat: no-repeat;
	/* background-position: center;	*/
	justify-content: center;
	align-items: center; 
}

.hamburgermenu {
	float: left;
	position: absolute; 
	top: 30px; 
  	left: 30px; 
}

.grayedtxt {
	float: left;
	position: absolute; 
	top: 50px; 
  	left: 30px; 
	font-family: 'Signika', sans-serif;
	font-weight: 400;
	color: #696868;
}

.journal {
	font-weight: 400;
	float: left;
	position: relative;
	top: 70px; 
  	left: -90px; 
}

.grayedtxt2 {
	text-align: right;
	font-family: 'Signika', sans-serif;
	font-weight: 400;
	color: #696868;
	position: relative;
	top: -10px; 
  	left: 120px; 
}

.calendar {
	width:364px;
	height: 275px;
}

.headertwoedit1 {
	position: relative;
	top: -5px; 
  	left: -60px;
}

.headertwoedit2 {
	position: relative;
	top: -3px; 
  	left: -115px;
}

.scrollable-container {
  	width: 100vw; /* Set the container height to full viewport height */
  	display: flex;
	padding-left: 40px;
	padding-right: 20px;
}

.scrollable-content {
  	flex: 1; /* Take up remaining space */
  	overflow-x: scroll; /* Enable vertical scrolling */
}


.navbar-container {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.button {
    position: fixed;
    bottom: 10px;
    right: calc(50% - 28px);
    z-index: 1001;
}

.navbarplus {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

.image-container {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.navbar {
  position: relative;
  z-index: 1;
}

.image-container {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.navbarplus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.navbarplus.on-top {
  z-index: 10001;
}


.navbarplus.sticky {
	 position: fixed;
    bottom: 10px;
    right: calc(50% - 28px);
    z-index: 999;
}

.image-container, .image-container img {
  	box-sizing: border-box;
}

.habitimg {
	height: 300px;
}


/* POP UP */

.container {
  	position: relative;
}

.button {
  	display: inline-block;
  	background-color: #ffffff;
  	text-decoration: none;
  	margin-right: 10px;
  	z-index: 2;
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -92%);
}

.popup-container {
  	display: none;
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	backdrop-filter: blur(5px);
  	z-index: 1;
    pointer-events: none;
}

.popup-container.active.popup {
	pointer-events: auto;
}

.popup-container.active {
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	flex-direction: column;
	pointer-events: none;
}

.popup {
  	background-color: pink;
  	padding: 20px;
  	border-radius: 5px;
  	text-align: center;
  	margin-bottom: 20px;
  	z-index: 2;
	justify-content: center;
	display: grid;
}

.close {
  	display: inline-block;
  	padding: 5px 10px;
  	background-color: #999;
  	color: #fff;
  	text-decoration: none;
  	margin-top: 10px;
}

.emojicon {
	padding-top: 20px;
}