@import url(https://fonts.googleapis.com/css?family=Exo:100,200,400);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);

body{
    margin: 0;
    padding: 0;
    background: #fff;

    color: #fff;
    font-family: Arial;
    font-size: 12px;
}

.transparent {
    position: fixed;
    top: -20px;
    left: -20px;
    right: -40px;
    bottom: -40px;
    width: auto;
    height: auto;
    background-image: url("/vendor/ems/background.jpg");
    background-size: cover;
    -webkit-filter: blur(4px);
    z-index: 0;
}

.principal{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
    z-index: 1;
    opacity: 0.7;
}

.logo{
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 400px);
    z-index: 2;
}

.logo div{
    float: left;
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-size: 45px;
    font-weight: 400;
}

.logo div span{
    color: #cad931 !important;
}

.form{
    position: absolute;
    top: calc(50% - 75px);
    left: calc(50% - 50px);
    height: 250px;
    width: 350px;
    padding: 10px;
    z-index: 2;
}

.form input[type=text]{
    background: transparent;
    width: 300px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 2px;
    font-family: 'Exo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 4px;
    color: #fff;
    font-weight: bold;
}

.form input[type=password]{
    background: transparent;
    width: 300px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 2px;
    font-family: 'Exo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 4px;
    color: #fff;
    margin-top: 15px;
    font-weight: bold;
}

.form button {
    margin-top: 15px;
    width: 300px;
    height: 40px;
    font-weight: bold;
    /*background: rgba(202, 217, 49, 0.6);*/
    font-family: 'Exo', sans-serif;
    border-radius: 5px;
    border: 1px solid rgba(202, 217, 49, 0.6);
}

::-webkit-input-placeholder{
    color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
    color: rgba(255,255,255,0.6);
}