@import url('https://fonts.googleapis.com/css2?family=Alegreya+SC:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,700;1,800;1,900&family=Neuton:ital,wght@0,200;0,300;0,400;0,700;0,800;1,400&display=swap');

:root {
	--color-yellow: #f9cc6a;
	--color-dark-blue: #071027;
	--color-blue: #2d3b60;
	--color-light-blue: #5c71a8;
	--color-white: #f1f1f1;
	--color-black: #1f1f1f;
	--color-red: #e51b1e;

	--font-family--neuton: 'Neuton', serif;
	--font-family-alegreya: 'Alegreya SC', serif;

	color: var(--color-white);
	font-family: var(--font-family--neuton);
	font-size: 14pt;
}

.square {
	display: flex;
	flex-direction: column;
	align-items: center;

	& span {
		font-size: 16pt;
	}

	& svg {
		width: 150px;
		height: 80px;
	}
}

*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: rgb(92, 113, 168);
	background: linear-gradient(145deg, rgba(92, 113, 168, 1) 0%, rgba(7, 16, 39, 1) 100%);
	background-attachment: fixed;
}

a {
	color: var(--color-white);
	text-decoration: none;
	cursor: pointer;
	font-weight: 500;
}

& .input {
	display: flex;
	flex-direction: column;
	width: 90%;
	gap: 0.4rem;

	& label {
		font-size: 16pt;
	}

	& input {
		width: 100%;
		height: 30px;
		background-color: transparent;
		border-top: transparent;
		border-left: transparent;
		border-right: transparent;
		border-bottom: 2px solid var(--color-light-blue);
		border-radius: 2px;
		font-size: 14pt;

		&:focus-within {
			outline: none;
			border-bottom: 4px solid var(--color-light-blue);
		}
	}

	& textarea {
		width: 100%;
		height: 100px;
		background-color: transparent;
		border-top: transparent;
		border-left: transparent;
		border-right: transparent;
		border-bottom: 2px solid var(--color-light-blue);
		border-radius: 2px;
		font-size: 14pt;
		font-family: var(--font-family--neuton);
		resize: none;

		&:focus-within {
			outline: none;
			border-bottom: 4px solid var(--color-light-blue);
		}
	}
}

/*Loader Styles*/
.lds-ellipsis {
	color: var(--color-black);
}

.lds-ellipsis,
.lds-ellipsis div {
	box-sizing: border-box;
}
.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-ellipsis div {
	position: absolute;
	top: 33.33333px;
	width: 13.33333px;
	height: 13.33333px;
	border-radius: 50%;
	background: currentColor;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}
