/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

body {
    font-family: montserrat, arial, verdana;
    background: transparent;
    background: linear-gradient(#192969, #123c80, #0e468b); /* fallback for old browsers */
    background: -webkit-linear-gradient(#192969, #123c80, #0e468b); /* Chrome 10-25, Safari 5.1-6 */
}

/*form styles*/
.limiter {
    width: 100%;
    margin: 0 auto;
}

.box {
    width: 100%;  
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;  
}

.wrap {
    width: 450px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    background: white;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 10px 10px;
}


/*buttons*/
input[type=button] {
    width: 95%;
    background: #da251d;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 15px;
    margin: 7px;
    justify-content: center;
}

input[type=button]:hover, input[type=button]:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #da251d;
}

/*headings*/
.fs-title {
    margin-left: 2px;
    font-size: 18px;
    text-transform: uppercase;
    color: black;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}
