/* Inspired in Mutiullah Samim's login style*/
@import url('https://fonts.googleapis.com/css?family=Numans');

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
html,body{
    background: url('https://i.imgur.com/weHB8zH.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: Arial, sans-serif;
}

.container{
height: 100%;
align-content: center;
}

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

.logo-container img {
    max-width: 230px; 
}

.landing-btn {
        display: block;
        padding: 12px;
        width: 60%;
        margin-bottom: 10px;
        text-decoration: none;
        color: rgb(255, 255, 255);
        background-color: #ed533f;
}
.landing-btn:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
}

.card {
animation: fadeIn 2s;
height: 370px;
margin-top: 200px;
margin-bottom: auto;
width: 400px;
background-color: rgba(0,0,0,0.5) !important;
}

.card-header h3{
color: white;
}

.sign-up-card {
    width:600px !important;
}

.input-group-prepend span{
width: 50px;
background-color: #FFC312;
color: black;
border:0 !important;
}

input:focus{
outline: 0 0 0 0  !important;
box-shadow: 0 0 0 0 !important;

}

.links{
color: white;
}

.links a{
margin-left: 4px;
text-decoration: none;
}

.push {
    margin-top: 20vmin;
}

label[for="id_username"], label[for="id_password"] {
    display:block;
    color:white;
    text-align: left;
}

.sign-in {
    color: rgb(255, 255, 255);
    background-color: #ed533f;
    width: 100px;
    margin-left: 0px;
}

.sign-in:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
}

.sign-up-input {
    width: 250px;
}

.signup-error {
    color: rgb(255, 255, 255);
}

.registration-helptext {
    color: white !important;
    font-size: 11.5px;
}

#sign-in-error {
    color: white !important;
    margin-top: 5px;
    position: absolute;
}


