/* The container for the form, used for position mostly. */
.form-container
{
    margin: 120px auto;
    width: 100%;
}
/* The form it self, for definging size ect. */
.form-body
{
    width: 400px;
    height: 553px;
    margin: auto;
    background-color: rgb(240, 240, 240);
    border-radius: 3px;
    box-shadow: 0 0 30px rgb(0 0 0 / 5%);  
}
.form-body-register
{
  width: 430px;
  height: 673px;
  margin: auto;
  background-color: rgb(240, 240, 240);
  border-radius: 3px;
  box-shadow: 0 0 30px rgb(0 0 0 / 5%);  

}
/* Form content like text (p,h1,h2 ect), lables, links, input boxes, ect. */
.form-content
{
    margin: 20px 10px;    
}

/* Form content like text (p,h1,h2 ect), lables, links, input boxes, ect. */
 .form-content h1, h2, h3, h5, h6
{
    font-weight: 800;
    font-family: 'Raleway';
    color: #000;
}
.form-content h4
{
    font-size: 1em;
    text-align: center;
    
}
.form-content h5
{
    font-size: 26px;
    text-align: center;
    margin: 0px 0px 0px 0px;
}
/* link styling. */
.form-content a 
{
  text-decoration: none;
  color: #F73F52;
}
.form-content a:hover, a:focus 
{
  color: #C8081C;
}


/* Used as a wrap if you need multiple input boxes that needs to be grouped with labels or text ect. */
.form-group
{
  margin: 15px 20px;
}
/* only for styling the input fields in the form. */
.form-input
{
  border-radius: 0;
  height: 40px;
  display:block;
  width:100%;
  font-size:15px;
  line-height:1.42857143;
  color:#555;
  background-color:#fff;
  border:1px solid #ccc;
  border-radius:4px;
  -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow:inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s
}

.btn
{
    width: 100%;
    text-transform: none;
    font-family: 'Times New Roman', Times, serif;
    display:inline-block;
    padding:6px 12px;
    margin-bottom:0;
    font-size:14px;
    font-weight:400;
    line-height:1.42857143;
    text-align:center;
    white-space:nowrap;
    vertical-align:middle;
    -ms-touch-action:manipulation;
    touch-action:manipulation;
    cursor:pointer;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    background-image:none;
    border:1px solid transparent;
    border-radius:4px
}
a, .btn- {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
  }
  .btn {
    font-size: 15px;
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
    border-color: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
    letter-spacing: .5px;
  }
  .btn-primary {
    background-color: #F73F52;
    border-color: #F73F52;
  }
  .btn-primary:disabled, .btn-primary.disabled, .btn-primary:hover, .btn-primary:active, .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:focus {
    background-color: #c8081c;
    border-color: #c8081c;
    box-shadow: none;
    outline: 0;
  }
  /* .btn-success {
    background-color: #1ABC9C;
    color: #fff !important;
    border-color: #1ABC9C;
  } */

/* Support class to align test in center. */
.text-center
{
    text-align: center;
}
  
  /* .form-group input .required:before {
    content: '*';
  } */