﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 80px;
    padding-bottom: 0px;
    background-repeat :no-repeat;
    background-size:cover;
}

.backColor{
    width: 100%;
    height: 100%;
    /*background-color: rgba(0,0,0,0.5);*/
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input[type="text"],
input[type="password"],
input[type="email"] {
    
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}

/************* btn purple ****************/
.btn-purple {
    background-color: #034ea2;
    color:white !important;
}

.btn-purple:hover,.btn-purple:active,.btn-purple.active
{
  background-color: #02438C;
  border-color: #02438C;
  color:white !important;
}


/************* btn black ****************/
.btn-black {
  background-color: #444444;
  color: white !important;
}

.btn-black:hover,.btn-black:active,.btn-black.active {
  background-color: #222222;
  border-color: #222222;
  color:white !important;
}


.textboxChangePwd{
    width:22em;
}


.button-blu{
    color: white;
    border: none;
    background-color: rgba(82, 82, 82, 0.88);
    border-radius: 1px;
    width: 108%;
    font-size: 1.5em;
    height: 3em;
    border: 1px solid white;
}

.button-blu:hover{
    background-color:rgba(0, 0, 0, 0.5);
}

.button-blu-inverse{
    color: rgb(82, 82, 82);
    border: none;
    background-color: rgba(255, 255, 255, 0.78);
    border-radius: 1px;
    width: 108%;
    font-size: 1.5em;
    height: 3em;
    border: 1px solid rgb(82, 82, 82);;
}

.button-blu-inverse:hover{
    background-color:rgba(255, 255, 255, 0.5);
}




