body, html {
    height: 100%;
    font-family: 'Lato', sans-serif;
}

.card-container.card {
    width: 540px;
    padding: 0px 40px 40px;
}

.card {
    background-color: #FFFFFF;
    /* just in case there no content*/
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 50px;
    /* shadows and rounded borders */
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}


.profile-name-card {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 0;
    min-height: 1em;
}


.btn-signin {
    background-color: #5A1432; 
    padding: 0px;
    font-weight: 700;
    font-size: 14px;
    height: 36px;
    margin-bottom: 10px;
    margin-top: 20px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;
    
}

.btn-signin:hover,
.btn-signin:active,
.btn-signin:focus {
    background-color: rgb(206, 18, 45);
}

small, .small {
  font-size: .88em;
  margin-bottom: 1.5rem;

}

img.center {
    display: block;
    margin: 0 auto;
    margin-bottom: 4.5rem;
}

legend {
  float: left;
  width: 100%;
  padding: 10;
  margin-bottom: 2.5rem;
  font-size: calc(2rem + 0.3vw);
  line-height: inherit;
}

.form-signin .form-control:focus {
    border-color: rgb( 90 20 50 / 100%);
    outline: 0; 
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25),0 0 8px rgb(90 20 50 / 25%);
    box-shadow: inset 0 1px 1px rgba(90,20,50,.075),0 0 8px rgb(90 20 50 / 25%);
}