﻿html {
    height: 100%;
}

body {
    align-items: center;
    background-color: #f2f2f2;
    display: flex;
    height: 100%;
    justify-content: center;
    margin: 0;
}

.container {
    align-items: center;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 1em #44bac5;
    display: flex;
    flex-direction: column;
    height: 330px;
    justify-content: space-around;
    width: 400px;
}

.image {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

form {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    height: 50%;
    justify-content: space-around;
    width: 320px;
}

form .login, .pass {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 15px;
}

    form .login input, .pass input {
        width: 235px;
        border: 1px solid #ededed;
        box-sizing: border-box;
        border-radius: 8px;
        height: 50px;
        font-family: Roboto;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 24px;
        padding: 10px;
    }

    form #button {
        background-color: #00a1b1;
        border: none;
        border-radius: 20px;
        box-shadow: none;
        color: #fff;
        font-weight: bold;
        margin-bottom: 15px;
        outline: none;
        min-height: 30px;
        cursor: pointer;
        width: 100px;
    }

        form #button:hover {
            background-color: #04c6d9;
        }

    form a {
        color: #000;
        font-family: Roboto;
        font-size: 12px;
        margin-bottom: 15px;
        text-decoration: none;
    }
