	* { box-sizing:border-box; }

	body {
		font-family: Helvetica;
		background: #eee;
	-webkit-font-smoothing: antialiased;
	}

	.header { 
		text-align:center;
		margin-top: 4em;
	}

	h1, h3 { font-weight: 300; }

	h1 { 
		color: #28BDFE;
		/* -webkit-text-stroke: 1px black;  */
		-webkit-text-fill-color: #018CCB; /* Fill color for text */
		font-style: italic;
		font-weight: bold;
		margin-bottom: 5px;
		}
	h3 { 
		color: #28BDFE;
		-webkit-text-stroke: 1px black; 
		-webkit-text-fill-color: #28BDFE; /* Fill color for text */
	}

	form {
		width: 380px;
		margin: 4em auto;
		padding: 3em 2em 2em 2em;
		background: #fafafa;
		border: 1px solid #ebebeb;
		box-shadow: rgba(0,0,0,0.14902) 0px 1px 1px 0px,rgba(0,0,0,0.09804) 0px 1px 2px 0px;
	}

	.group { 
		position: relative; 
		margin-bottom: 45px; 
	}

	input {
		font-size: 18px;
		padding: 10px 10px 10px 5px;
		-webkit-appearance: none;
		display: block;
		background: #fafafa;
		color: #636363;
		width: 100%;
		border: none;
		border-radius: 0;
		border-bottom: 1px solid #757575;
	}

	input:focus { outline: none; }


	/* Label */

	label {
		color: #999; 
		font-size: 18px;
		font-weight: normal;
		display: block; 
		left: 5px;
		top: 10px;
	}


	/* active */

	input:focus ~ label, input.used ~ label {
		color: #018CCB;
	}



	/* Underline */

	.bar {
		position: relative;
		display: block;
		width: 100%;
	}

	.bar:before, .bar:after {
		content: '';
		height: 2px; 
		width: 0;
		bottom: 1px; 
		position: absolute;
		background: #4a89dc; 
		transition: all 0.2s ease;
	}

	.bar:before { left: 50%; }

	.bar:after { right: 50%; }


	/* active */

	input:focus ~ .bar:before, input:focus ~ .bar:after { width: 50%; }


	/* Highlight */

	.highlight {
		position: absolute;
		height: 60%; 
		width: 100px; 
		top: 25%; 
		left: 0;
		pointer-events: none;
		opacity: 0.5;
	}


	/* active 

	input:focus ~ .highlight {
		animation: inputHighlighter 0.3s ease;
	}
	*/

	/* Animations */

	@keyframes inputHighlighter {
		from { background: #4a89dc; }
		to 	{ width: 0; background: transparent; }
	}
	

	/* Button */

	.button, .buttonBlue, .buttonGrey {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		font-size: 18px;
		font-weight: bold;
		padding: 12px 24px;
		border-radius: 30px;
		border: 1px solid #ddd;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		cursor: pointer;
		transition: all 0.3s ease-in-out;
		background-color: #fff;
		color: #757575;
		text-align: center;
		text-decoration: none;
		letter-spacing: 1px;
		width: 100%; 
		line-height: 48px;
	}
	
	.buttonBlue {
		background: #28BDFE	;
		color: white;
		border: none;
		text-shadow: 1px 1px 0 rgba(39, 110, 204, .5);
	}
	
	.buttonBlue:hover {
		background: #018CCB;
		box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
		transform: translateY(-2px);
	}

	.buttonGrey {
		background: #A5A5A5;
		color: white;
		border: none;
		text-shadow: 1px 1px 0 rgba(39, 110, 204, .5);
	}
	
	.buttonGrey:hover {
		background: #696969;
		box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
		transform: translateY(-2px);
	}
	
	.button:hover {
		box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
		transform: translateY(-2px);
	}

	form button {
		margin: 10px 0; /* Add some margin between buttons */
	}

	/* !!!!! Ripples container !!!!!*/

	/* Ripples container */

	.ripples {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: transparent;
	}


	/* Ripples circle */

	.ripplesCircle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	}

	.ripples.is-active .ripplesCircle {
	animation: ripples .4s ease-in;
	}


	/* Ripples animation */

	@keyframes ripples {
	0% { opacity: 0; }

	25% { opacity: 1; }

	100% {
		width: 200%;
		padding-bottom: 200%;
		opacity: 0;
	}
	}

	/* !!!!! FOOTER !!!!!*/

	footer { text-align: center; }

	footer p {
		color: #888;
		font-size: 13px;
		letter-spacing: .4px;
	}

	footer a {
		color: #4a89dc;
		text-decoration: none;
		transition: all .2s ease;
	}

	footer a:hover {
		color: #666;
		text-decoration: underline;
	}

	#logo {
		display: block; /* Ensures the image is treated as a block-level element */
		margin: 0 auto; /* Centers the image horizontally */
		margin-bottom: 15px;
		width: 200px; /* Adjust the width as needed */
		height: auto; /* Maintains the aspect ratio */
		transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
	}
	
	#logo:hover {
		opacity: 0.85; /* Slightly fade the logo */
		transform: scale(1.05); /* Slightly enlarge the logo */
		box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Add a subtle shadow effect */
		border-radius: 15px; /* Round the edges of the logo */
	}
	
	#logo:focus,
	footer a:focus {
		outline: none;
	}

	#helpText {
		display: none; /* Initially hidden */
		margin: 0 auto; /* Centers the block horizontally */
		text-align: left; /* Aligns the content to the left */
		max-width: 600px; /* Optional: Limit the width for better readability */
		padding: 10px; /* Optional: Add padding for spacing */
		font-size: 16px; /* Optional: Adjust font size */
		line-height: 1.5; /* Optional: Improve readability with line spacing */
	}

	.hidden {
		display: none;
	}
	


	/* MODAL */

	.modal {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5); /* Dimmed background */
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1000;
	}
	
	.modal-content {
		background: white;
		padding: 20px;
		border-radius: 10px;
		text-align: center;
		width: 90%;
		max-width: 400px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	}
	
	.modal-buttons {
		margin-top: 20px;
		display: flex;
		justify-content: center;
		gap: 10px;
	}
	
	.modal-buttons button {
		padding: 10px 20px;
		border: none;
		border-radius: 5px;
		cursor: pointer;
	}
	
	.modal-buttons button:hover {
		opacity: 0.9;
	}
	
	.modal-input-container {
		display: flex; /* Enable Flexbox on the container */
		justify-content: center; /* Center horizontally */
		align-items: center; /* Center vertically */
		margin-top: 20px; /* Optional spacing above */
	}
	
	.modal-input-container input {
		align-items: center;
		justify-content: center;
		/*width: 100%;
		max-width: 200px;
		padding: 10px;
		font-size: 16px;
		border: 1px solid #ccc;
		border-radius: 5px;
		text-align: center;*/
		display: flex; /* Enable Flexbox on the container */
		justify-content: center; /* Center child horizontally */
		align-items: center; /* Center child vertically */
		align: center;
		height: 100%; /* Full height for proper vertical centering */
		width: 100%; /* Ensure full width of the parent */
	}

	.modal-error {
		color: #FF0101;
		margin-top: 10px;
		font-weight: bold;
		text-align: center;
	}

	#modalInput {
		width: 100%; /* Full width for flexibility */
		max-width: 300px; /* Limit maximum width */
		padding: 10px;
		font-size: 16px;
		border: 1px solid #ccc;
		border-radius: 5px;
		text-align: center; /* Center text inside the input field */
	}


	/* !!!!! Slider !!!!!*/

	/* Slider container styling */
	.slider-container {
		display: flex;
		align-items: center;
		gap: 10px;
		margin: 10px 0;
	}
	
	/* Slider label styling */
	.slider-label {
		color: #999; 
		font-size: 18px;
		font-weight: normal;
		display: block; 
		left: 5px;
		top: 10px;
		margin-top: 5px
	}
	
	/* Hide default checkbox */
	.slider input {
		display: none;
	}
	
	/* The slider itself */
	.slider {
		position: relative;
		display: inline-block;
		width: 40px;
		height: 20px;
	}
	
	.slider-round {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #ccc;
		border-radius: 20px;
		transition: 0.4s;
		cursor: pointer;
	}
	
	.slider-round:before {
		content: "";
		position: absolute;
		height: 14px;
		width: 14px;
		background-color: white;
		border-radius: 50%;
		left: 3px;
		bottom: 3px;
		transition: 0.4s;
	}
	
	/* When the checkbox is checked */
	.slider input:checked + .slider-round {
		background-color: #4a89dc;
	}
	
	.slider input:checked + .slider-round:before {
		transform: translateX(20px);
	}

	#modalSecretKey {
		font-size: 15px; /* Optional: Adjust font size */
		line-height: 1.5; /* Improve readability */
		text-align: center;
		margin-bottom: 10 px;
	}
	
	.modalTips {
		font-size: 15px; /* Optional: Adjust font size */
		line-height: 1.5; /* Improve readability */
		text-align: center;
	}