﻿@charset "utf-8";

@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

div.main {
    background: #5E72E4;
    background: radial-gradient(ellipse at center, 5E72E4 1%, #1c2b5a 100%);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    /*background: rgba(255, 255, 255, 0.2);*/
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.middle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo {
    color: #fff;
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

#login form {
    width: 100%;
}

.input-group .input-group-prepend .input-group-text {
    background-color: #fff;
    border-radius: 3px 0 0 3px;
    color: #000;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}

.form-control {
    height: 50px;
    margin-bottom: 1em;
    padding: 0 16px;
}

#login form input[type="submit"] {
    border-radius: 3px;
    background-color: #000;
    color: #eee;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 10px;
    height: 50px;
    width: 100%;
    margin-top: 10px;
}

    #login form input[type="submit"]:hover {
        background-color: #d44179;
    }

#login > p {
    text-align: center;
    color: #fff;
}

    #login > p span {
        padding-left: 5px;
    }

.clearfix::before,
.clearfix::after {
    content: ' ';
    display: table;
}

.clearfix::after {
    clear: both;
}

a {
    color: #eee;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }
