*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--blue-color: #007aff;
	--primary-color: #ff9d3d;
	--max-width-laptop: 1200px;
	--max-width-desktop: 1700px;
}

.body {
	width: 100%;
	transition: all 0.56s;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0.4px;
	transition: all 0.45s;
}

/* header info */
header {
	display: flex;
	position: fixed;
	top: 0;
	justify-content: space-between;
	align-items: center;
	font-weight: 300;
	width: 100%;
	padding: 0 5%;
}

header span {
	display: inline-flex;
	flex-wrap: nowrap;
}

header span nav a {
	text-decoration: none;

	&:hover {
		transform: scale(1.2);
	}
}

header a img {
	object-fit: cover;
	height: 40px;
	width: 50px;
	margin-top: 2px;
}

nav ul {
	list-style: none;
	display: inline-flex;
	row-gap: 12px;
}

header span nav span {
	margin: 0 12px;
	position: relative;
	top: 5px;

	color: black;
	font-weight: normal;
}

/*log in page*/

.handler {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	margin-top: 25dvh;

	height: fit-content;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	column-gap: 12px;
	row-gap: 12px;
	background-color: white;
	padding: 12px;
	border-radius: 6px;
	background-color: #dddddd;
}

.form {
	display: inline-flex;
	flex-direction: column;
	text-align: center;
}

.form h3 {
	text-align: left;
	color: var(--blue-color);
	margin-bottom: 32px;
	font-size: 21px;
}

form {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 6px;
	width: 100%;
	padding: 8px;
}

input {
	min-width: 100px;
	flex: 0.9;
	border-top: none;
	border-right: none;
	border-left: none;

	border-bottom: 2px solid var(--blue-color);
	font-size: 18px;
	text-align: center;
	padding: 12px 0 1px 3px;
	outline: none;

	&:focus {
		border-bottom: 2px solid var(--primary-color);
	}
}

form button {
	border: none;
	border-radius: 6px;
	width: 100%;
	margin-top: 32px;
	padding: 8px 0 11px 0;
	font-size: 16px;
	font-weight: bolder;
	letter-spacing: 0.5px;
	color: white;
	background-color: var(--blue-color);

	&:hover {
		background-color: var(--primary-color);
	}
}

.form a {
	margin: 8px 0 12px 0;
	&:hover {
		color: blue;
		text-decoration: none;
	}
}

.phpinfo p {
	width: 100%;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.4px;
	color: #d10000;
	background-color: #d1000013;
}

p a {
	text-decoration: none;
}
