﻿body {
    background-color: #F3F3F3;
}

.login-box {
    width: 400px;
    height: 350px;
    background: #ffffff;
    color: #ffffff;
    top: 50%;
    left: 35%;
    position: absolute;
    -webkit-transform: translate(-40%,40%);
    -moz-transform: translate(-40%,40%);
    -ms-transform: translate(-40%,40%);
    -o-transform: translate(-40%,40%);
    transform: translate(-40%,40%);
    box-sizing: border-box;
    padding: 70px 30px;
    border-radius: 15%;
    text-align: center;
    -webkit-box-shadow: 2px 2px 5px #999;
    -moz-box-shadow: 2px 2px 5px #999;
    filter: shadow(color=#999999, direction=135, strength=2);
    text-align: center;
   
    
}

    .login-box .login-logo {
        width: 200px;
        /*height: 100px;
            border-radius: 50%;*/
        position: absolute;
        top: -50px;
        left: calc(50% - 100px);
        /*-webkit-box-shadow: 2px 2px 5px #999;
            -moz-box-shadow: 2px 2px 5px #999;
            filter: shadow(color=#999999, direction=135, strength=2);*/
    }

    .login-box h1 {
        margin: 0;
        padding: 0 0 20px;
        text-align: center;
        font-size: 22px;
    }

    .login-box label {
        margin: 0;
        padding: 0;
        font-weight: bold;
        display: block;
        text-align: left;
    }

    .login-box input {
        width: 100%;
        margin-bottom: 20px;
    }

        .login-box input[type="email"],
        .login-box input[type="password"] {
            border: none;
            border-bottom: 1px solid #B80F22;
            background: transparent;
            outline: none;
            height: 40px;
            color: #000000;
            font-size: 16px;
        }

        .login-box input[type="submit"] {
            border: none;
            outline: none;
            height: 40px;
            background: #B80F22;
            color: #ffffff;
            border-radius: 20px;
            width: 150px;
            left: calc(50% - 50px);
        }

            .login-box input[type="submit"]:hover {
                background: #7c000e;
            }

.login-imput-text {
    display: flex;
    align-content: space-between;
    align-items: center;
}
    .login-imput-text img {
        margin-bottom: 15px;
        margin-right: 10px;
    }

@media only screen and (min-width: 200px) and (max-width: 767px) {
    .login-box {
        width: 350px;
        height: 300px;
        background: #fff;
        color: #ffffff;
        top: 20%;
        left: 45%;
        position: absolute;
        -webkit-transform: translate(-40%,40%);
        -moz-transform: translate(-40%,40%);
        -ms-transform: translate(-40%,40%);
        -o-transform: translate(-40%,40%);
        transform: translate(-40%,40%);
        box-sizing: border-box;
        padding: 70px 30px;
        border-radius: 15%;
        text-align: center;
        -webkit-box-shadow: 2px 2px 5px #999;
        -moz-box-shadow: 2px 2px 5px #999;
        filter: shadow(color=#999999, direction=135, strength=2);
        text-align: center;
    }

        .login-box .login-logo {
            width: 200px;
            position: absolute;
            top: -50px;
            left: calc(50% - 100px);
        }

        .login-box h1 {
            margin: 0;
            padding: 0 0 20px;
            text-align: center;
            font-size: 22px;
        }

        .login-box label {
            margin: 0;
            padding: 0;
            font-weight: bold;
            display: block;
            text-align: left;
        }

        .login-box input {
            width: 100%;
            margin-bottom: 10px;
        }

            .login-box input[type="email"],
            .login-box input[type="password"] {
                border: none;
                border-bottom: 1px solid #B80F22;
                background: transparent;
                outline: none;
                height: 40px;
                color: #000000;
                font-size: 14px;
            }

            .login-box input[type="submit"] {
                border: none;
                outline: none;
                height: 40px;
                background: #B80F22;
                color: #ffffff;
                border-radius: 20px;
                width: 150px;
                left: calc(50% - 50px);
            }

                .login-box input[type="submit"]:hover {
                    background: #7c000e;
                }

    .login-imput-text {
        display: flex;
        align-content: space-between;
        align-items: center;
    }

        .login-imput-text img {
            margin-bottom: 15px;
            margin-right: 10px;
        }
}