*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html, body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');

body { 
    font-family: 'Mukta', sans-serif;
	position: relative; 
	display: flex; 
	align-items: center; 
	width: 100%; 
	height: 100%; 
	margin: 0; 
	padding: 0; 
	overflow: hidden; 
	min-height: 100vh; 
	min-width: 100vw; 
	background-image: 
		linear-gradient(5deg, rgba(255,255,255,0.1), rgba(0,0,0,0.2)), 
		/* url(https://pcvis.fishniz.nl/wp-content/uploads/2022/02/stellendam-haven-scaled.jpg);  */
		url(https://pcvis.fishniz.nl/wp-content/uploads/2022/03/248d4ad3-f9f1-11e8-9c0b-7af9a0551524_image11-scaled.jpg);
	background-size: cover;
	background-position: left bottom; 
	background-repeat: no-repeat; 
}

body::after { 
	content: ''; 
	position: absolute; 
	top: 0; left: 0; 
	height: 100%; 
	width: 100%; 
	background-image: url(../images/ssshape.svg); 
	background-position: 50%; 
	background-size: cover; 
}

#lostpasswordform,
#loginform {
    width: 320px;
    height: auto;
    background: #fff;
    box-shadow: 0 10px 15px rgba(21, 45, 59, 0.7);
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 1rem 1rem 0 1rem;
}

.login #backtoblog>a { 
	display: none; 
}

#login { 
	position: relative; 
	z-index: 2; 
	display: flex;
	flex-direction: column;
	width: 45%;
	height: auto;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	border-radius: 25px;
	padding-top: 40px;
}

.message {
	background-color: #fff;
	width: 100%;
	max-width: 320px;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 9px;
	border: 2px solid #fff;
	color: #444;
}

#login_error {
	background-color: #f09c9c;
	width: 100%;
	max-width: 320px;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 9px;
	border: 2px solid #b51212;
	color: #560909;
	font-size: 0.9em;
	line-height: 1;
}

#loginform .submit {
	pointer-events: auto;
	cursor: pointer;
	background: #0387AE;
	border: none;
	padding: 1.5rem 3rem;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	position: relative;
	display: inline-block;
}

#loginform .submit::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#loginform .submit {
	font-family: 'Mukta', sans-serif;
	font-weight: 700;
	width: 175px;
	height: 60px;
	color: #fff;
	background: none;
	position: relative;
	align-self: end;
	margin-right: -1rem;
}

#loginform .submit::before {
	content: '';
	background: #0387AE;
	-webkit-clip-path: path("M143,77 C117,96 74,100.5 45.5,91.5 C17,82.5 -10.5,57 5.5,31.5 C21.5,6 79,-5.5 130.5,4 C182,13.5 169,58 143,77 Z");
	clip-path: path("M143,77 C117,96 74,100.5 45.5,91.5 C17,82.5 -10.5,57 5.5,31.5 C21.5,6 79,-5.5 130.5,4 C182,13.5 169,58 143,77 Z");
}

#loginform .submit #wp-submit {
	pointer-events: auto;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	background: none;
	border: 0;
	outline: none;
	color: #fff;
}

#nav {
	width: 100%;
	max-width: 320px;
	padding: 20px;
	text-align: right;
}

#nav > a {
	margin-top: 30px;
	display: inline-block;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	border-bottom: 1px dotted;
}

.input {
	width: 100%;
	height: 44px;
	transition: all 0.3s ease;
	position: relative;
}

#loginform > *:first-child input,
#loginform > *:first-child+* input {
	border: 0;
	height: 44px;
	margin-bottom: 10px;
	border-bottom: 1px dotted #ccc;
}

#loginform > *:first-child label,
#loginform > *:first-child+* label {
	font-size: 0.9em;
	color: #777;
	margin-top: 4px;
	margin-left: 5px;
}

.wp-pwd {
	position: relative;
}

.login .button.wp-hide-pw {
	background: 0 0;
	border: 1px solid transparent;
	box-shadow: none;
	font-size: 14px;
	line-height: 2;
	width: 2.5rem;
	height: 2.5rem;
	min-width: 40px;
	min-height: 40px;
	margin: 0;
	padding: 5px 9px;
	position: absolute;
	right: 0;
	top: 0;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	-webkit-appearance: none;
	border-radius: 3px;
	white-space: nowrap;
	box-sizing: border-box;
	color: #777;
}

#lostpasswordform .submit {
	margin-top: 20px;
	margin-bottom: 10px;
}

#lostpasswordform .submit .button {
	background-color: #0387AE;
	padding: 5px 15px;
	border-radius: 3px;
	color: #fff;
	border: 0;
	cursor: pointer;
}

h1 a {
	pointer-events: none;
	cursor: auto;
}