/* FONTS */
@font-face {
    font-family: 'Bree Serif';
    src: url('../fonts/bree-serif.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* BODY STYLING */

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

body {
	background-color: #e9eaee;
    font-family: "Bree Serif", Helvetica, Arial, sans-serif;
    font-weight: 300;
    text-align: left;
    text-decoration: none;
}

#wrapper {
    width: 300px;
    height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/*******************
LOGIN FORM
*******************/

.login-form {
    width: 300px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    background: #f9fafb;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/*******************
HEADER
*******************/

.login-form .header {
	background: #f9fafb;
	padding: 14px;
	/*display: flex;*/
	justify-content: space-between;
	align-items: center;
	color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
}

.login-form .header h1 { 
    font-weight: 300;
    font-size: 1.75rem;
    line-height: 2.125rem;    
    margin-bottom: 10px;
}

.login-form .header span {
	font-size: 14px;
	color: #1f2937;
	margin-right: 10px;
}

.login-form .header .logo {
    width: 120px;
    height: auto;
   /* margin-left: 40px;*/
    filter: grayscale(30%);
    transition: transform 0.3s ease;
}

/*******************
CONTENT
*******************/
#login-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 400px;
	/*background: #fff;*/
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.login-form .content {
    padding: 0 30px 25px 30px;
}

.login-form .content .input {
    padding: 15px 35px;
    font-family: "Bree Serif", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #9d9e9e;
    text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
}

.login-form .content .password, .login-form .content .pass-icon {
    margin-top: 25px;
}

.login-form .content .input:hover, .login-form .content .input:focus {
    background: #dfe9ec;
    color: #414848;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
}

.user-icon, .pass-icon {
    width: 46px;
    height: 47px;
    display: block;
    position: absolute;
    left: 0px;
    padding-right: 2px;
    z-index: 3;
    border-radius: 5px 0 0 5px;
}

.user-icon {
    top: 232px;
    background: rgba(65,72,72,0.75) url(../../../estilos/css/images/user-icon.png) no-repeat center;
}

.pass-icon {
    top: 308px;
    background: rgba(65,72,72,0.75) url(../../../estilos/css/images/pass-icon.png) no-repeat center;    
}

.input, .user-icon, .pass-icon, .button, .register {
    transition: all 0.5s ease;
    will-change: transform, opacity;
}

/*******************
FOOTER
*******************/

.login-form .footer {
    padding: 20px;
    overflow: auto;
    background: #f9fafb;
    border-top: 1px solid #fff;
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.15);
}

.login-form .footer .button {
	width: 100%;
	padding: 10px;
	background: #4b5563;
	border: none;
	color: white;
	font-size: 14px;
	cursor: pointer;
	border-radius: 4px;
}

.login-form .footer .button:hover {
    background: #083653;
    border: 1px solid rgba(256,256,256,0.75);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.login-form .footer .button:focus {
    position: relative;
    bottom: -1px;
    /*background: #56c2e1;*/
    box-shadow: inset 0 1px 6px #083653;
}

.login-form .footer .register {
    display: block;
    float: right;
    padding: 10px;
    margin-right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Bree Serif", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    color: #414848;
    text-shadow: 0px 1px 0 rgba(256,256,256,0.5);
}

.login-form .footer .register:hover {
    color: #3f9db8;
}

.login-form .footer .register:focus {
    position: relative;
    bottom: -1px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 72%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #414848;
    font-size: 14px;
}

.toggle-password:hover {
    color: #3f9db8;
}