/* Fuente de servidor */
@font-face{
    font-family: 'Poppins SemiBold';
    src:url('Poppins-SemiBold.ttf');
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}


.bodyLogin 
{
    font-size: 14px;
    font-weight: lighter;
    background-color: #111924; /* Color Azul */
    background-image: url("../img/bg.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.loginBox 
{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 260px;*/
    max-width: 300px;
    min-width: 260px;
    height: 430px;
    padding: 80px 40px;
    box-sizing: border-box;
    background: rgba(15,44,88,1.0);
    border-radius: 5%;
}

.user 
{
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    top: calc(-100px/2);
    left: calc(50% - 50px);
}

.subtituloLogin
{
    margin: 0;
    padding: 0 0 20px;
    color: #fff;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.loginBox p
{
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: #fff;
}

.loginBox input 
{
    width: 100%;
    margin-bottom: 20px;
}

button, [type="button"], [type="submit"], [type="reset"], a.button {
    border-radius: 10px;
    background-color: darkorange;
    font-weight: 600;
    text-transform: uppercase;
}


.loginBox input[type="text"],
.loginBox input[type="email"],
.loginBox input[type="password"]
{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 14px;
}

::placeholder
{
    color: rgba(255,255,255,0.5);
}

.loginBox input[type="button"],
.loginBox input[type="submit"],
#btnEnviar,
#lnkExternalUsers 
{
    border: none;
    outline: none;
    height: 40px;
    color: #fff;
    font-family: 'Roboto';
    font-size: 14px;
    background: darkorange;
    cursor: pointer;
    border-radius: 10px;
}

.loginBox input[type="button"]:hover, .loginBox input[type="submit"]:hover,
#btnEnviar:hover, #lnkExternalUsers:hover
{
    background: green;
    
}

.loginBox a
{
    color: #fff;
    font-size: 14px;
}