﻿*, *:before, *:after {
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    /* background: #E2E2E2 url(../bg.jpg)  no-repeat center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
 	background-size: cover; */
    background: #EEE;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

.login-form-wrap {
    /* background: #009ADD;
	background: -moz-radial-gradient(center, ellipse cover, #009ADD 0%, #337AB7 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #009ADD), color-stop(100%, #337AB7));
	background: -webkit-radial-gradient(center, ellipse cover, #009ADD 0%, #337AB7 100%);
	background: -o-radial-gradient(center, ellipse cover, #009ADD 0%, #337AB7 100%);
	background: -ms-radial-gradient(center, ellipse cover, #009ADD 0%, #337AB7 100%);
	background: radial-gradient(ellipse at center, #009ADD 0%, #337AB7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009ADD', endColorstr='#337AB7',GradientType=1 );
	border: 1px solid #337AB7;
	box-shadow: 0 1px #5670A4 inset, 0 0 10px 5px rgba(0, 0, 0, 0.1);
	border-radius: 5px; */
    position: absolute;
    width: 360px;
    min-height: 400px;
    max-width: 100%;
    left: 50%;
    top: 50%;
    margin-left: -180px;
    margin-top: -280px;
    padding: 50px 30px 0 30px;
    text-align: center;
}

    .login-form-wrap:before {
        display: block;
        content: '';
        width: 58px;
        height: 19px;
        top: 10px;
        left: 10px;
        position: absolute;
    }

.logomarca {
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
    max-height: 61px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.login-form-wrap h1 {
    font-family: 'Code', sans-serif;
    margin: 0 0 50px 0;
    padding: 0;
    font-size: 0;
    color: #009ADD;
}

.login-form-wrap a {
    display: block;
    font-size: 14px;
    color: #009ADD;
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 15px;
}

.login-form input[type="email"], .login-form input[type="password"] {
    width: 100%;
    border: 1px solid #999;
    outline: none;
    padding: 12px 20px;
    color: #afafaf;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

    .login-form input[type="email"]:focus, .login-form input[type="password"]:focus {
        color: #222;
        font-weight: bold;
    }

.login-form input[type="email"] {
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    padding-bottom: 13px;
    box-shadow: 0 -1px 0 #E0E0E0 inset, 0 1px 2px rgba(0, 0, 0, 0.23) inset;
}

.login-form input[type="password"] {
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.23) inset, 0 1px 2px rgba(255, 255, 255, 0.1);
}

.login-form input[type="submit"] {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    background: #44ADD5;
    /* background: -moz-linear-gradient(top, #e0e0e0 0%, #cecece 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e0e0e0), color-stop(100%, #cecece));
	background: -webkit-linear-gradient(top, #e0e0e0 0%, #cecece 100%);
	background: -o-linear-gradient(top, #e0e0e0 0%, #cecece 100%);
	background: -ms-linear-gradient(top, #e0e0e0 0%, #cecece 100%);
	background: linear-gradient(to bottom, #e0e0e0 0%, #cecece 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0e0e0', endColorstr='#cecece',GradientType=0 ); */
    display: block;
    margin: 20px auto 0 auto;
    width: 100%;
    border: none;
    border-radius: 3px;
    padding: 8px;
    margin-bottom: 20px;
    font-size: 17px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
    font-weight: 700;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.17), 0 1px 0 rgba(255, 255, 255, 0.36) inset;
}

    .login-form input[type="submit"]:hover {
        background: #009ADD;
    }

    .login-form input[type="submit"]:active {
        padding-top: 9px;
        padding-bottom: 7px;
        background: #44ADD5;
    }

.backLink {
    float: left;
}

.forgotLink {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cbd2d6;
    text-align: right;
}

.createAccout {
    background-color: #E1E7EB;
    color: #2C2E2F !important;
    padding: 10px;
    margin-top: 8px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.17), 0 1px 0 rgba(255, 255, 255, 0.36) inset;
}

.register-country-links {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.register-country-links .createAccout {
    margin-top: 0;
}

@media screen and (max-width: 360px) {
    .login-form-wrap {
        left: 0%;
        top: 0%;
        margin: 15% 5%;
        width: 90%;
    }
}
