/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-default,
.btn-default:hover,
.btn-default:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: 1px solid #fff;
}


/*
 * Base structure
 */

html,
body {
  height: 100%;
  background-color: #333;
  background-image: url('bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}
body {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

.form-box {
    background-color: #874d92;
    width: 450px;
    height: 400px;
    border-radius: 50px;
    float: right;
    margin-right: 150px;
    padding: 35px;
}

.form-box-mobile {
    margin-top: 25px;
    background-color: #874d92;
    width: 90%;
    height: 400px;
    border-radius: 20px;
    padding: 10px;
}

.form-header{
    font-size: 26px;
    font-weight: bold;
}

.form-lead {
    font-size: 18px; 
    font-style: italic;
    font-weight: 400
}

.form-input {
    background-color: #ffffff;
    border-radius: 5px;
}


