@import url("https://fonts.googleapis.com/css?family=Comfortaa:300,400,700");
body, html {
    height: 100%;
    font-family: "Comfortaa", sans-serif;
}

*, *:before, *:after {
    box-sizing: border-box;
}

.img-bk {
    min-width: 105%;
    min-height: 105%;
    position: absolute;
    left: 50%;
    top: 50%;
    filter: blur(5px);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
}

a {
    color: #3CABDB;
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
}

.card {
    overflow: hidden;
    max-width: 95%;
    width: 600px;
    height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    display: table;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.card .side {
    width: 100%;
    float: left;
}
.card .side.form {
    padding: 20px;
}
.card .side.form .img-logo {
    text-align: center;
    margin-bottom: 10px;
}

.card .side.form .img-logo img {
    width: 20%;
}

.card .side.form label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 3px;
    color: #888;
}
.card .side.form input,
.card .side.form select
{
    border: 2px solid #eee;
    padding: 10px;
    font-size: 11px;
    display: block;
    width: 100%;
    outline: none;
    font-family: "Comfortaa", sans-serif;
    margin-bottom: 10px;
    border-radius: 3px;
    transition: border 0.2s ease-in-out;
}

.card .side.form input:focus,
.card .side.form select:focus
{
    border-color: #167FFC;
}

.card .side.form .btn-submit {
    width: 100%;
    top: 0;
    height: 50px;
    background: linear-gradient(to right, #f3863d, #fd6500);
    border: 0;
    border-radius: 2px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    color: #fff;
    font-family: "Comfortaa", sans-serif;
    outline: none;
    position: relative;
    transition: all 0.2s ease-in-out;
}
.card .side.form .btn-submit:hover {
    box-shadow: 0 0 0 transparent;
    top: 3px;
}
.card .side.form .text-muted {
    font-size: 12px;
    margin-top: 15px;
    display: block;
}
.card .side.picture {
    height: 100%;
    overflow: hidden;
    position: relative;
}
.card .side.picture img {
    min-width: 300px;
    max-height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

p.error {
    color: white;
    font-size: 12px;
    margin-top: 5px;
    background: #f87575;
    padding: 12px;
    border-radius: 3px;
}