/* GENERAL */
body{
    font-family: Ubuntu;

    color: #dedede;
    background-color: rgba(0,0,0,.9);
    background-image: url(../img/background.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 337.5px 400px;
}

a,a:hover,a:active,a:visited{
    color: #dedede !important;
}

.container{
    position: relative;

    width: 95%;
    max-width: 600px;
    min-height: 400px;
    margin-top: 20px;
    padding: 0;
    padding-bottom: 50px;

    text-align: center;

    border: 2px solid rgba(0,0,0,.5);
    border-radius: 2px;
    background-color: rgba(0,0,0,.8);
}

.header{
    min-height: 150px;

    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    background: rgba(0,0,0,.8);
}

.title{
    font-size: 50px;
    font-weight: bold;

    width: 100%;

    text-align: center;

    color: #dedede;
    text-shadow: 0 0 20px rgba(0,0,0,1);
}

.slogan{
    font-size: 20px;
    font-style: italic;

    width: 100%;

    text-align: center;

    color: #dedede;
    text-shadow: 0 0 10px black;
}

.menu a{
    font-size: 18px;
    font-weight: bold;
    line-height: 35px;

    display: inline-block;

    width: 49.7%;
    height: 40px;
    margin: 0;
    margin-top: 10px;
    padding: 0;

    -webkit-transition: background .5s;
    text-align: center;
    text-decoration: none;

    color: #dedede;
    background: black;

    -transition: background .5s;
}

.menu a:hover{
    background-color: rgba(255,255,255,.2);
}

.content{
    font-size: 17px;

    margin: 10px 20px;s
}
h1,h2,h3,h4,h5,h6{
    text-decoration: underline;

    color: #dedede;
}
.content a{
    text-decoration: underline;

    color: black;
}

.footer{
    position: absolute;
    bottom: 0;

    width: 100%;
    height: 50px;

    text-align: center;

    color: #dedede;
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
    background-color: rgba(0,0,0,.7);
}

.copyText{
    margin-top: 5px;
}

.alert{
    font-size: 15px;

    padding: 4px 7px;

    text-align: justify;
}

input[type="text"], input[type="password"], input[type="email"], .btn{
    border-radius:0;
}
