body {
	margin: 0px;
    min-height: 100svh;
}
main {
	min-height: 92svh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f7f9fc;
	font-family: Arial, sans-serif;
}
.innerWrapper {
	min-height: 50px;
	min-width: 50px;
	background-color: white;
	padding: 55px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
    width: 360px;
    padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.ov {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
.form {
	display: flex;
	flex-direction: column;
}
.input {
	margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.logginn_button {
    padding: 10px;
    border: none;
    background-color: #0077cc;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
	transition: background-color 0.3s;
}
.logginn_button:hover {
    background-color: #005fa3;
}
.glemt_passord {
    font-size: 14px;
    color: #0077cc;
    text-decoration: none;
}
.glemt_passord:hover {
    text-decoration: underline;
}