@import 'material-icons.css';
@import 'https://fonts.googleapis.com/css?family=Raleway';

:root {
    --main-color:#3740F4;
    --main-light-color: #F4F5FE;
    --main-bg-color: white;
    --inactive-color: #dbdbdb;
    --main-font-family: 'Raleway';

    font-family: var(--main-font-family);
    color: black;
    font-size: 18px;
}

@media screen and (min-width:0\0)
{
    :root
    {
        font-family: 'Raleway'; /*hard code font for IE*/
    }
}

body{
    background-image: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.titleContainer
{
    margin: 3em auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
}

.title
{
    text-align: center;
    font-size: 3em;
    letter-spacing: 0.2em;
}

.subTitle
{
    text-align: center;
    font-size: 1.5em;
    margin-top: -0.2em;
}

/*****************/
/* general forms */
/*****************/

input
{
    height: 3em;
    border-radius: 0.7em;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    border: 1px solid var(--main-color);
    margin: 5px;
    box-sizing:border-box;
}

button
{
    height: 3em;
    border-radius: 0.7em;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    background: var(--main-light-color);
    color:var(--main-color);
    font-weight: bolder;
    border: 2px solid var(--main-color);
    margin: 5px;
}

button:enabled:hover
{
    background: linear-gradient(to bottom, var(--main-light-color) 0% 5%,  var(--main-color) 60% 100%);
    border: 2px solid var(--main-color);
    color: var(--main-bg-color);
	cursor: pointer;
}

button div
{
    vertical-align: middle;
    display: inline-block;
}

button .material-icons
{
    font-size: 2em;
    vertical-align: middle;
    display: inline-block;
}

/*********************/
/* login/logout form */
/*********************/

div.login > p
{
    text-align: center;
}

div.login > form > div,div.logout > form > div
{
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

div.logout > form  .username
{
    display: inline-block;
}

div.logout
{
    position: absolute;
    top: 5px;
    right: 5px;
}

/**************/
/* tasks menu */
/**************/

div.taskArea > p
{
    text-align: center;
}

div.taskArea > form > div
{
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

button.taskDone
{
    background: var(--main-bg-color);
    color: var(--inactive-color);
	border: 2px solid var(--inactive-color);
}

button.taskDone .material-icons
{
    color:green;
}

p.taskMenuTitle
{
    font-size: 1.5em;
}

hr.taskAreaSeparator
{
    width: 50%;
    color: var(--inactive-color);
    margin-top: 1.5em;
}

/****************/

/****************/
/* Requierement */
/****************/

#requierment
{
    text-align:center;
}

#requierment ul
{
    display: table;
    margin: 1em auto;
}

#requierment img.navigatorIcon
{
    height:1.5em;
}

#requierment span.rawLink
{
    font-family:monospace,Courrier;
    background:#e6e6e6;
}

/****************/

/****************/
/* recruitment */
/****************/

#recruitment
{
    text-align:center;
    margin-top: 3em;
}

/****************/
