html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: "Segoe UI", "Open Sans", Helvetica, Arial, sans-serif !important;
}
.img1, .img2 {
    width: 13vw;
    height: 30vw;
    position: fixed;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/ptica.svg);
}
.img1{
    left:2vw;
    top:2vw;
}
.img2 {
    right: 2vw;
    bottom: 2vw;
     -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
.logo{
    margin: auto;
    margin-bottom: 5vw;
    background-size: contain;
    background-image: url('../img/logo.svg');
    background-position: center center;
    width:15vw;
    height: 15vw;
}
.cont, .contLog {
    width: 50%;
    margin: auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    text-align: center;
}
input {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="text"], input[type="password"] {
    border: none;
    background: none;
    border-bottom: 1px solid #444;
    width: calc(100% - 20px);
    padding: 10px;
    font-size: 14px;
    color: #444;
    text-align: center;
    -webkit-transition: width 0.2s linear;
    transition: width 0.2s linear;
    margin: 20px 0;
}

input[type="text"]:focus, input[type="password"]:focus {
    width: 80%;
    outline-color: rgba(255,255,255,0.3);
}

input[type="submit"] {
    border: none;
    border: 1px solid #444;
    border-radius: 25px;
    width: 80%;
    margin: auto;
    padding: 10px;
    background: none;
    color: #444;
    font-size: 15px;
    margin-top: 20px;
    padding: 10px;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
}
input[type="submit"]:hover {
    background-color: rgba(0,0,0,0.1);
}

input[type="submit"]:focus {
    outline-color: rgba(255,255,255,0);
}

.inputCont {
    width: 80%;
    margin: auto;
}
a {
    text-decoration: none;
}
.regBtn {
    width: 40%;
    margin: auto;
    border: 1px dashed #444;
    margin-top: 20px;
    border-radius: 25px;
    padding: 7px;
    color: #444;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
}
.regBtn:hover {
    background-color: rgba(0,0,0,0.1);
}
.regBtn > p {
    margin:0;
}
::-webkit-input-placeholder {
    color: #444;
}

@media screen and (max-width: 800px) {
    .cont, .contLog {
        width: 90%;
    }
}

@media screen and (max-height: 712px){
    .cont {
        position: relative;
        margin: auto;
        padding-top:10vw;
        padding-bottom: 10vw;
    top: inherit;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    }
}
