@import url('https://fonts.googleapis.com/css?family=Oxygen');
body{
    margin: 0;
    padding: 0;
    font-family: 'Oxygen', sans-serif;
    letter-spacing: 1px;
}
/*section{
    width: 100%;
    height: 100vh;
    background: url(/resources/images/logo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}*/
.banner-img{
    background-image: url('../images/logo.jpg');
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: 100%;
    filter: blur(10px);
}

.banner-top{
    background-image: url("#{resources['images/logo1.jpg']}");
    background-size: contain;
    background-position: center center;
    height: 100%;
}


.container .dntdkt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 350px;
    /*background: rgba(103, 58, 183, 0.7);*/
    box-shadow: -20px 0 15px rgba(0, 0, 0, 0.3);
    padding: 15px;
    z-index: 8;
}
/*.container .form_content, .container .login_form{
    position: relative;
    width: 100%;
    height: 350px;
    float: left;
    box-sizing: border-box;
}
.container .form_content{
    padding: 40px;
    color: #fff;
}
.container .form_content a{
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background: #ff0057;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.container .login_form{
    background: #fff;
    height: 350px;
    top: -15px;
    box-shadow: -20px 0 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
}*/
.container h1{
    color: #262626;
}

.container input{
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 5px;
    border: 2px solid #ccc;
    border-radius: 25px;
    outline: none;
    font-size: 15px;
}
.container input:hover{
    border: 2px solid #673ab7;
}
.container input[type="submit"]{
    color: #fff;
    background: #673ab7;
    font-size: 16px;
    transition: 0.5s;
}
.container input[type="submit"]:hover{
    background: #ff0057;
    border: 2px solid #ff0057;
}
.container a{
    text-decoration: none;
    font-weight: bold;
}