@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,500,700&subset=latin-ext');
body{
    font-family: Ubuntu;
    background-color: #59abe3;
    background-image: url(../img/background_admin_login.png);
    transition: background-color 3s ease;
}
h1,
h2{
    color: #ededed;
}
.container{
    max-width: 300px;
    margin-top: 150px;
    padding-bottom: 20px;
    text-align: center;
    border-radius: 10px;
}
#logo{
    display: block;
    width: 100%;
    margin: 121px auto 0 auto;
}
#logo_text{
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    text-align: center;
    vertical-align: middle;
    color: #ededed;
}
#username{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
#password{
    border-radius: 0;
}
.btn{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
#username:focus,
#password:focus,
#captcha:focus{
    border-color: rgba(255,255,255,.3);
}
.btn-success{
    transition: all .5s;
    border: 1px solid black;
    background-color: rgba(0,0,0,.8) !important;
}
.btn-success:hover{
    border: 1px solid black;
    background-color: rgba(0,0,0,.7);
}

/* CAPTCHA */
#captchaHolder img{
    float: left;
    width: 100px;
}
#captcha{
    float: left;
    width: 170px;
    margin-right: 0;
    border-radius: 0;
}
