/*---------------------------------------*/


/* Font */


/*---------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Roboto');

/*---------------------------------------*/


/* Register Form */


/*---------------------------------------*/

.formcls {
    font-family: "book antiqua", sans-serif;
    width: 650px;
    margin: 30px auto;
    background: linear-gradient(to right, #ffffff 0%, #fafafa 50%, #ffffff 99%);
    border-radius: 10px;
}


/*---------------------------------------*/


/* Form Header */


/*---------------------------------------*/

.form-header {
    background-color: #431f8b;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

body {
    font-family: "book antiqua",sans-serif !important;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}


.form-header h1 {
    font-size: 30px;
    text-align: center;
    color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #431f8b;
    margin: 20px 0 0;
}

h4 {
    color: #431f8b;
}

.logo {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.vertical-align-middle {
    vertical-align: middle !important;
}

.align-items-center {
    align-items: center !important;
    margin: auto;
}

.d-flex {
    display: flex !important;
}

.brand {
    width: 30%;
    display: flex;
}

@media (min-width: 992px) {
    .site-name span {
        font-size: 1rem;
        margin-bottom: 5px;
    }
}

.site-name span {
    display: block;
    text-transform: uppercase;
    color: #481d88;
    font-size: 1.5rem;
    font-weight: 600;
}


/*---------------------------------------*/


/* Form Body */


/*---------------------------------------*/

.form-body {
    padding: 1px 30px;
    color: #666;
    background: #efefef;
    height: 800px;
    border: 1px solid transparent;
    border-radius: 0px 10px 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-body .label-title {
    color: black;
    font-size: 16px;
    font-weight: normal;
}

.form-body .form-input {
    font-size: 16px;
    box-sizing: border-box;
    width: 100%;
    height: 34px;
    padding-left: 10px;
    padding-right: 10px;
    color: #333333;
    text-align: left;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: white;
    outline: none;
}

.horizontal-group .left {
    float: left;
    width: 49%;
}

.horizontal-group .right {
    float: right;
    width: 49%;
}

input[type="file"] {
    outline: none;
    cursor: pointer;
    font-size: 17px;
}

#range-label {
    width: 15%;
    padding: 5px;
    background-color: #1BBA93;
    color: white;
    border-radius: 5px;
    font-size: 17px;
    position: relative;
    top: -8px;
}

::-webkit-input-placeholder {
    color: #d9d9d9;
}


/*---------------------------------------*/


/* Form Footer */


/*---------------------------------------*/

.signup-form .form-footer {
    background-color: #EFF0F1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px 40px;
    text-align: right;
    border-top: 1px solid #cccccc;
    clear: both;
}

.form-footer span {
    float: left;
    margin-top: 10px;
    color: #999;
    font-style: italic;
    font-weight: thin;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #431f8b !important;
    font-size: 17px;
    border: none;
    border-radius: 5px;
    color: white !important;
    cursor: pointer;
}

.res {
    display: inline-block;
    padding: 10px 20px;
    background-color: red;
    font-size: 17px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.btn:hover,
.res:hover {
    color: white;
    background-color: #431f8b;
}

#header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
}

#header .header {
    min-height: 8vh;
    background-color: #ffffff69;
    transition: 0.3s ease background-color;
}

#header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 10px;
}

#hero {
    background-image: url(home1.jpg);
    background-size: cover;
    background-position: left;
    position: relative;
    z-index: 1;
}

#hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000c9;
    opacity: 0.7;
    z-index: -1;
}

#hero .hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    justify-content: flex-start;
}