* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #000;
    color: #999;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

p {
    margin: 0.5rem 0;
}

img {
    width: 100%;
}

.showcase {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url('../img/background.jpg') no-repeat center center/cover;

}

.showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.65);
    box-shadow: inset 30px 10px 150px #000000;
}

.logo {
    position: relative;
    z-index: 2;
    height: 90px;
}

.logo img {
    width: 170px;
    position: absolute;
    top: 20px;
    left: 40px;
}

.showcase-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 650px;
    background: rgb(0, 0, 0, 0.65);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 40px 20px;
}

@media (min-width: 992px) {
    .showcase-content {
        padding: 60px 65px;
        width: 450px;
    }
}


.formm h1 {
    margin-bottom: 20px;
}

.formm {
    width: 100%;
    margin-bottom: 20px;
}

.formm .info {
    /*padding: 5px 0;*/
    display: table;
    width: 100%;
    /* margin-bottom: 20px; */
}

.formm .info .view-prefix{
    display:table-cell;
    color: white;
    font-weight: bold;
}

.formm .info .email {
    /*margin-bottom: 30px;*/
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: none;
    padding: 10px;
    font-size: inherit;
    color: white;
}

.formm .info .email:focus {
    /*border-bottom: 2px solid #e87c03;*/
    outline: none;
}

.formm .info .error{
    border-bottom: 2px solid #e87c03;
}

.inputError{
    font-size: 13px;
    color: #e87c03;
    margin-bottom: 20px;
    margin-top: 5px;
}

.error-message-container {
    background: #e87c03;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    margin: 0 0 16px;
    display: table;
    width: 100%;
}

.error-message-contents {
    display: table-cell;
    vertical-align: middle;
    padding: 20px 10px;
    color: #fff;
}

.formm .info .email:disabled{
    cursor: no-drop;
    color: lightgray;
}

.formm .btn {
    margin-bottom: 10px;
    width: 100%;
}

.btn-primary {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: #f8981e;
    color: #fff;
    font-size: inherit;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
    margin-top:20px
}

.help {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.help a {
    color: #999;
}

.help a:hover {
    text-decoration: underline;
}

/* ------ input ------- */

input[type=checkbox] {
    background: #737373;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 0;
    height: 16px;
    left: -20px;
    width: 16px;
    margin-right: 5px;
}

input[type=email] {
    background: #343434;
}

input[type=text], input[type=number] {
    background: #343434;
    /* Firefox remove the arrow*/
    -moz-appearance: textfield;
}

/* Chrome, Safari, Edge, Opera remove the arrow*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


input[type=password] {
    background: #343434;
}

/* ------ input end ------- */

.fcbk {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.8em;
}

.fcbk img {
    width: 20px;
    margin-right: 10px;
}

.signup {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.signup p {
    margin-right: 5px;
}

.more {
    font-size: 0.8em;
    line-height: 1.1em;
}

.more a {
    color: rgb(17, 108, 228);
}

.more a:hover,
.signup a:hover {
    text-decoration: underline;
}

/* ------ FOOTER ------- */

footer {
    position: absolute;
    margin-top: 50px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 200px;
}

.ftr-content {
    margin-left: 10%;
    padding-top: 20px;
    font-size: 1em;
}

.ftr-content a {
    color: #999;
}

.ftr-content a:hover {
    text-decoration: underline;
}

.contact {
    margin-bottom: 30px;
}

.contact a:hover {
    text-decoration: underline;
}

.ftr {
    margin-bottom: 30px;
    width: 70%;
    font-size: 0.8em;
    display: flex;
    justify-content: space-between;
}

.select select {
    width: 100px;
    height: 40px;
    border: none;
    font-size: inherit;
    padding-left: 10px;
    background: #333333;
    color: white;
}
