/**
 * Login css objects.
 *
 * @author		ivo.fortes@maria-design.pt
 * @date		2019-05-29
 * @version		1.0
 */
body {
	background-color: #282627;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(255,255,255, 0.5);
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgba(255,255,255, 0.5);
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: rgba(255,255,255, 0.5);
}

#login_container {
    width: 500px;
    max-width: 95%;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

#logo {
    background: url(/img/login/maria.svg) no-repeat;
    background-size: 100%;
    background-position: 50%;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 78px;
    height: 64px;
    z-index: 1;
}

#left {
    width: 50%;
    max-width: 50%;
    min-height: 100vh;
    max-height: 100vh;
    position: absolute;
    background-color: #ffffff;
}

#left>img {
    max-width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

#right {
    width: 50%;
    max-width: 50%;
    min-height: 100vh;
    max-height: 100vh;
    position: absolute;
    background-color: #282627;
    left: 50%;
}

/*
 * Header
 */
#login_container>.header {
    padding: 20px;
    margin-bottom: 50px;
    text-align: center;
}


/*
 * Body
 */
#login_container>.body {
	padding: 10px;
}

#login_container>.body button {
    height: 40px;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: 0;
    background-color: #ed1c4d;
    border-radius: 20px;
    min-width: 160px;
    margin: 40px;
}

#login_container>.body button:focus {
	background-color: #de2752;
	outline: none;
}

#login_container>.body button:hover {
	background-color: #de2752;
	outline: none;
}

#login_container>.body button:active {
	background-color: #ed1a4c;
	outline: none;
}

#login_container>.body a {
    display: none;
	text-align: center;
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}

/*
 * Footer
 */
#login_container>.footer  {
	text-align: center;
}

#login_container>.footer img {
    display: inline-block;
}


/******************************************************************************/
/*
 * Overriden
 */
.maria_design-component-text>.message {
	color: #ed1c4d;
}

.maria_design-component-text>#username{
    background: url(/img/login/icon-user.svg) no-repeat;
    background-position: 10px center;
    background-size: 50px;
    padding-left: 70px;
    height: 70px;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
    color: rgba(255,255,255, 0.5);
}

.maria_design-component-text>#password{
    background: url(/img/login/icon-password.svg) no-repeat;
    background-position: 10px center;
    background-size: 50px;
    padding-left: 70px;
    height: 70px;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
    color: rgba(255,255,255, 0.5);
}