﻿@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');
@import url('https://fonts.googleapis.com/css?family=Hind&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Hind', sans-serif;
}

body {
    /*background-image: url("../img/komfi-background_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;*/
    position: relative;
}

.cont {
    position: relative;
    width: 25%;
    padding: 10px 25px;
    margin: 10vh auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 5px 2px #dadada;
}

.form {
    width: 100%;
    height: 100%;
}

h1, h2, .user, .pass {
    text-align: center;
    display: block;
}

h1 {
    color: #606060;
    font-weight: bold;
    font-size: 40px;
    margin: 30px auto;
    letter-spacing: 2px;
}

.user, .pass {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 0px;
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
    border-radius: 5px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: 45px;
}

.login {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 0px;
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 30px;
}

.error {
    color: red;
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 0px;
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 30px;
}

.user, .pass {
    background: #ecf0f1;
}

.login {
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    background: #d89a09;
    transition: background 0.4s ease;
    border-radius: 5px;
}

    .login:hover {
        background: #f5a53f;
    }

/*.login-img {
    width: 100%;
    height: 50%;
}*/

@media only screen and (min-width : 280px) {
    .cont {
        width: 90%;
    }
}

@media only screen and (min-width : 480px) {
    .cont {
        width: 60%;
    }
}

@media only screen and (min-width : 768px) {
    .cont {
        width: 40%;
    }
}

@media only screen and (min-width : 992px) {
    .cont {
        width: 30%;
    }
}

h2 {
    color: #fff;
    margin-top: 25px;
}
