/* profile bar */
@media screen {
    .profile {
        color: #BBBBBB;
        font-size: 11px;
        font-family: verdana;
        position: absolute;
        right: 12px;
        top: 4px;
        line-height: 18px;
    }
    .profile a {
        color: #BBBBBB;
    }
    .profile .logout {
        margin-left: 20px;
    }
    .profile .name {
        font-weight: bold;
    }
    .profile .close {
        background-color: silver;
        border-radius: 4px;
    }
}

/* module container */
@media screen {
    .module {
        width: 30%;
        border: 1px solid #DDDDDD;
        border-radius: 10px;
        margin: 10px;
        text-align: center;
        display: inline-block;
        background-color: #f5f5f5;
        cursor: pointer;
    }
    .module:hover {
        background-color: #FAFAFA;
        box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
    }
}

form input[type=text]{
   width: 300px;
}

.text-center {
    text-align: center;
}

.prominent {
    font-size: 22px;
}

.error {
    color: #900;
}

.info {
    color: #080;
}