@charset "utf-8";
/* CSS Document */

body {
	font-family: "Imprima", sans-serif;
	margin: 0;
}

#accountModal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
    overflow: auto; /* Enable scroll if needed */
	backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    margin: 0vh auto;
    width: fit-content;
    max-width: 90%;
	background: transparent;
}

.modal-close-account {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 35px;
    font-weight: bold;
    color: #D5FF4F;
    cursor: pointer;
    z-index: 1001;
	/*circle*/
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

#signup-form{
	border-bottom: medium;
}

#signup-btn, #login-btn {
	background-color: #D5FF4F;
	color: black;
}

#signout-btn, #forgot-password {
	background-color: #7F4FFF;
	color: black;	
}

#delete-account-btn {
	background-color: #FF0000;
	color: white;
}	

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 5px;
	color: #555;
	font-weight: 500;
}

input[type="text"], 
input[type="email"], 
input[type="password"] {
	display: flex;
	width: 100%;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	box-sizing: border-box;
	transition: border-color 0.3s;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="password"]:focus {
	outline: none;
	border-color: #4CAF50;
}

.plan-section {
	width: 100%;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	box-sizing: border-box;
	transition: border-color 0.3s;
}

.plan-label {
	color: white;
	font-weight: 500;
	margin-bottom: 10px;
}

.plan-box, #signup-btn, #login-btn, #signout-btn, #delete-account-btn, #forgot-password {
	display: flex;
	width: 100%;
	padding: 8px 16px;
	border-radius: 20px;
	font-family: "Imprima", sans-serif;
	font-weight: 500;
	font-size: 24px;
	text-justify: center;
	justify-content: center;
	margin: 0 auto 1vh;
}

.comparison-table {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0;
}

.column-header {
	font-family: "Imprima", sans-serif;
	padding: 15px;
	text-align: center;
	font-weight: 600;
	font-size: 1.3rem;
}

.free-column {
	font-family: "Imprima", sans-serif;
	font-size: 1.5em;
	background: #444444;
	color: white;
}

.paid-column {
	font-family: "Imprima", sans-serif;
	font-size: 1.5em;			
	background: #D5FF4F;
	color: black;
}

.free-cell {
	background: #B4B4B4;
	color: #333;
	font-size: 1.3rem;
	font-weight: 600;
}

.paid-cell {
	background: #EDFFB5;
	color: #333;
	font-size: 1.3rem;
	font-weight: 600;
}

.feature-label {
	background: transparent;
	border-right: 1px solid #dee2e6;
	font-family: "Imprima", sans-serif;
	justify-content: center;
	font-weight: 600;
	color: #333;
}

.feature-row {
	display: contents;
}

.feature-cell {
	padding: 5px 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	min-height: 20px;
	transition: all 0.3s ease;
}

.selection-row {
	display: contents;
}

.select-cell {
	padding: 1vh 2vw;
	margin: 4% 0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Imprima", sans-serif;
	font-weight: 600;
	font-size: 1.5em;
	color: white;
	min-height: 20px;
	transition: all 0.3s ease;
	background: #7F4FFF;
	cursor: pointer;
	border: none;
}

.section-divider .feature-cell {
	border-top: 2px solid #333;
}

/* PORTRAIT MOBILE (up to 1099px wide) */
@media only screen and (orientation: portrait) and (max-width: 1099px) {

	.account-container {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 90vw;
		left: 5vw;
		top: 5vw;
		margin: 0 0 5vw 0;
		background-color: transparent;
		border-radius: 10px;
		padding: 20px;
		box-sizing: border-box;
	}
	
	.account-logo {
		position: relative;
		display: block;
		width: 15vw;
		height: auto;
		top: 2vh;
	}
	
	.account-container h1 {
		position: relative;
		display: block;
		font-family: "Imprima", sans-serif;
		font-weight: 600;
		font-size: 2em;
		color: white;
		text-align: center;
		margin: 2vh 0 0 0;
	}	

	.account-container h2 {
		font-family: "Imprima", sans-serif;
		font-size: 1.1em;
		font-weight: 400;	
		line-height: 1;
		color:  white;
		margin: 1vh 0 2vh 0;
	}
	
	.copy {
		font-family: "Imprima", sans-serif;
		font-size: 0.7em;
		font-weight: 400;	
		line-height: 1.2;
		text-align: center;
		margin: 0 0 2vh 0;
		color: white;
	}	
	
	.copy2 {
		font-family: "Imprima", sans-serif;
		font-size: 0.6em;
		font-weight: 400;	
		line-height: 1.2;
		text-align: center;
		margin: 0 0 2vh 0;
		color: white;
	}
	
	.form-container {
		position: relative;
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0px 10px;
	}
	
input[type="text"], 
input[type="email"], 
input[type="password"] {
	display: flex;
	width: 100%;
	height: 4vh;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-size: 0.6em;
	box-sizing: border-box;
	transition: border-color 0.3s;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="password"]:focus {
	outline: none;
	border-color: #4CAF50;
}
	
.plan-box, #signup-btn, #login-btn, #signout-btn, #delete-account-btn, #forgot-password {
	display: flex;
	width: 100%;
	height: 4vh;
	border: none;
	padding: auto 16px;
	border-radius: 8px;
	font-family: "Imprima", sans-serif;
	font-weight: 600;
	font-size: 0.9em;
	align-items: center;        /* centers vertically */
	justify-content: center;    /* centers horizontally */
	text-align: center; 
	margin: 0 auto 1vh;
}
	
#show-login, #show-signup {
	font-size: 1.5em;
	color: #D5FF4F;				
}
	
	.comparison-container {
		width: 100%;
		margin: 0 0 0 0;
		background: rgba(255, 255, 255, 0.95);
		border-radius: 0px;
		overflow: hidden;
		backdrop-filter: blur(10px);
	}
	
.comparison-table {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0;
}

.column-header {
	font-family: "Imprima", sans-serif;
	padding: 15px;
	text-align: center;
	font-weight: 600;
	font-size: 1.1em;
}

.free-column {
	font-size: 0.7em;
	font-weight: 600;
}

.paid-column {
	font-size: 0.7em;
	font-weight: 600;
}

.free-cell {
	font-size: 0.6em;
	font-weight: 600;
}

.paid-cell {
	font-size: 0.6em;
	font-weight: 600;
}

.feature-label {
	background: transparent;
	border-right: 1px solid #dee2e6;
	font-family: "Imprima", sans-serif;
	justify-content: center;
	font-weight: 600;
	color:  #333;
}

.feature-row {
	display: contents;
}

.feature-cell {
	padding: 0.5vh 0.2vw 0.5vh 0.2vw;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6em;
	min-height: 20px;
	transition: all 0.3s ease;
}
	
	.feature-label {
		font-size: 0.7em;
	}
	
}

/* LANDSCAPE MOBILE/TABLET (480px to 1099px wide) */
@media only screen and (min-width: 480px) and (orientation: landscape) and (max-width: 1099px) {

	.account-container {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 80vw;
		top: 5vw;
		margin: 0 auto;
		background-color: transparent;
		padding: 30px;
		border-radius: 10px;
		box-sizing: border-box;
	}	
	
	.account-logo {
		position: relative;
		display: block;
		width: 8vw;
		height: auto;
		top: 5vh;
	}
	
	.account-container h1 {
		font-family: "Imprima", sans-serif;
		font-weight: 600;
		font-size: 2.5em;
		color:  white;
		text-align: center;
		margin: 4vh 0 0 0;
	}
	
	.account-container h2 {
		font-family: "Imprima", sans-serif;
		font-size: 0.9em;
		font-weight: 400;	
		line-height: 0.8;
		color:  white;
		margin: 1vh 0 7vh 0;
	}
	
	.copy {
		font-family: "Imprima", sans-serif;
		font-size: 1em;
		font-weight: 400;	
		line-height: 1.4em;
		text-align: center;
		margin: 0 0 2vh 0;
		color:  white;
	}	
	
	.copy2 {
		font-family: "Imprima", sans-serif;
		font-size: 0.7em;
		font-weight: 400;	
		line-height: 1.2em;
		text-align: center;
		margin: 2vh 0 5vh 0;
		color:  white;
	}
	
	.form-container {
		position: relative;
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5px 20px;
	}
	
.plan-box, #signup-btn, #login-btn, #signout-btn, #delete-account-btn, #forgot-password {
	display: flex;
	width: 100%;
	height: 10vh;
	border: none;
	padding: auto 16px;
	border-radius: 8px;
	font-family: "Imprima", sans-serif;
	font-weight: 600;
	font-size: 1em;
	align-items: center;        /* centers vertically */
	justify-content: center;    /* centers horizontally */
	text-align: center; 
	margin: 0 auto 1vh;
}
	
#show-login, #show-signup {
	font-size: 1em;
	color: #D5FF4F;		
}
	
	.comparison-container {
		width: 100%;
		margin: 0 0 0 0;
		background: rgba(255, 255, 255, 0.95);
		border-radius: 0px;
		overflow: hidden;
		backdrop-filter: blur(10px);
	}
	
	.feature-label {
		font-size: 24px;
	}
	
}

/* DESKTOP (1100px and wider) */
@media only screen and (min-width: 1100px) {

	.account-container {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 60vw;
		max-width: 800px;
		margin: 5vh auto;
		background-color: transparent;
		border-radius: 10px;
		padding: 30px;
		box-sizing: border-box;
	}	
	
.modal-close-account {
    position: fixed;
    top: 5vh;
    right: 5vw;
    font-size: 35px;
    font-weight: bold;
    color: #D5FF4F;
    cursor: pointer;
    z-index: 1001;
	/*circle*/
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}
	
	.account-logo {
		position: relative;
		display: block;
		width: 5vw;
		height: auto;
		top: 2vh;
	}

	.account-container h1 {
		font-family: "Imprima", sans-serif;
		font-weight: 600;
		font-size: 3.5em;
		color:  white;
		text-align: center;
		margin: 4vh 0 0 0;
	}
	
	.account-container h2 {
		font-family: "Imprima", sans-serif;
		font-size: 1.7em;
		font-weight: 400;	
		line-height: 0.8;
		color:  white;
		margin: 1vh 0 5vh 0;
	}
	
	.copy {
		font-family: "Imprima", sans-serif;
		font-size: 1.4em;
		font-weight: 400;	
		line-height: 1.2em;
		text-align: center;
		margin: 0 0 2vh 0;
		color:  white;
	}	
	
	
	.copy2 {
		font-family: "Imprima", sans-serif;
		font-size: 0.8em;
		font-weight: 400;	
		line-height: 1.2em;
		text-align: center;
		margin: 0 0 3vh 0;
		color:  white;
	}
	
	.form-container {
		position: relative;
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5px 20px;
	}
	
#signup-btn, #login-btn, #signout-btn, #delete-account-btn, #forgot-password {
	display: flex;
	width: 100%;
	height: 5vh;
	border: none;
	padding: auto 16px;
	border-radius: 8px;
	font-family: "Imprima", sans-serif;
	font-weight: 600;
	font-size: 1em;
	position: relative;
	align-items: center;        /* centers vertically */
	justify-content: center;    /* centers horizontally */
	text-align: center;
	cursor: pointer;
}
	
	
#show-login, #show-signup {
	font-size: 1.4em;
	color: #D5FF4F;
}
	
	.comparison-container {
		width: 100%;
		margin: 0 0 0 0;
		background: rgba(255, 255, 255, 0.95);
		border-radius: 0px;
		overflow: hidden;
		backdrop-filter: blur(10px);
	}
	
	.feature-label {
		font-size: 24px;
	}

}