* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

.wrapper form .button input[type="submit"]:disabled {
	background-color: dimgrey;
	color: linen;
	opacity: 1;
}

.wrapper form .show_pass {
	margin: 5px;
}


body {
	background: #ead7fc;
	overflow: scroll;
	scroll-behavior: auto;
	background: #fef8e1;
	
}

.mainBody
{
	min-height: 100vh;
    min-width: 100%;
}

::selection {
	background: rgba(26, 188, 156, 0.3);
}

.container {
	max-width: 440px;
	padding: 0 20px;
	margin: 50px auto;
}

.wrapper {
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 10px;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
}

.wrapper .title {
	height: 60px;
	background: #e8592d;
	border-radius: 10px 10px 0 0;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wrapper form {
	padding: 30px 25px 25px 25px;
}

.wrapper form .row {
	height: 45px;
	margin-bottom: 15px;
	position: relative;
}

.wrapper form .row input {
	height: 100%;
	width: 100%;
	outline: none;
	padding-left: 5px;
	border-radius: 5px;
	border: 1px solid lightgrey;
	font-size: 16px;
	transition: all 0.3s ease;
}

form .row input:focus {
	border-color: #6991ff;
	box-shadow: inset 0px 0px 2px 2px rgba(26, 188, 156, 0.25);
}

form .row input:read-only {
	border-color: black;
	box-shadow: inset 0px 0px 2px 2px rgba(146, 151, 151, 0.25);
	border-color: black;
	color: #999;
}

form .row input::placeholder {
	color: #999;
}

.wrapper form .row i {
	position: absolute;
	width: 47px;
	height: 100%;
	color: #fff;
	font-size: 18px;
	background: #16a085;
	border: 1px solid #16a085;
	border-radius: 5px 0 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wrapper form .button input {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	padding-left: 0px;
	margin: 5px 0px 5px 0px;
	background: rgb(232, 89, 45);
    border: 1px solid rgb(232, 89, 45);
    color: rgb(250, 250, 250);
    transition: all 0.3s ease;
    
/*	
	border: 1px solid rgba(0, 0, 189, 0.9);
	background-color:  rgba(0, 0, 189, 0.9);
	color: rgb(255, 255, 255);
*/

}

form .button input:hover {
	background: rgb(253, 60, 0);
    border: 1px solid rgb(255, 60, 0);
    cursor: unset;
	
	/*
	background: #14ab3a;
	*/
	
}

.wrapper form .home-link {
	text-align: center;
	margin-top: 20px;
	font-size: 17px;
}

.wrapper form .home-link a {
	color: #6991ff;
	text-decoration: none;
}

form .home-link a:hover {
	text-decoration: underline;
}

.wrapper form .err {
	margin: -8px 0 20px 0;
	padding: 5px;
}

.wrapper form .err p {
	color: yellow;
	font-size: 17px;
	text-decoration: none;
}

.wrapper form .err {
	background-color: #ec1c14;
	border: #ec1c14;
	height: auto;
}