html {
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

body {
	margin: 0;
}

article,
aside,
details,
figcaption figure,
footer,
header,
main,
menu,
nav,
section {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

figure {
	margin: 1em 40px;
}

hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

abbr[title] {
	border-bottom: none;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}


/* register-login */
.register-login {
	padding: 100px 10px 10px 10px;
}

.register-login__content {
	max-width: 450px;
	margin: 0 auto;
}

.register-login__box {
	background: rgb(255, 255, 255);
	border: 1px solid rgb(224, 224, 224);
	border-radius: 4px;
	padding: 91px 32px 45px;
	position: relative;
}

.register-login__img {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 140px;
	height: 140px;
	padding: 15px 25px;
	background-color: rgb(255, 255, 255);
	display: flex;
	align-items: center;
	top: -70px;
	box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
}


.register-login__img a > img
{
    display: block;

    width: 100%;
    /* height: auto; */
}


.register-login__action {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-bottom: 1px solid rgb(224, 224, 224);
	padding: 20px 0 40px 0;
}

.register-login__action a {
	display: block;
	cursor: pointer;
	width: 100%;
	padding: 10px 20px;
	font-size: 0.875rem;
	color: #fff;
	background-color: #00B8E4;
	text-transform: uppercase;
	transition: .4s linear;
	font-family: 'OpenSansRegular', sans-serif;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	line-height: 1.7;
	box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
}

.register-login__action a:hover {
	background-color: #02538b;
}

.register-login__action a:first-of-type {
	margin-bottom: 20px;
}