html, 
body {
    background-color:#1a1a1a;
    height: 100%;
    margin:0px; padding:0;
}

input[type=button], input[type=submit], input[type=reset] {
    background: #54AF47;
    border-radius: 50px;
    border: none;
    color: black;
    font-size: 18px;
    padding: 10px 20px;
    text-decoration: none;
    margin: 10px;
    cursor: pointer;
    pointer-events : none;
    opacity: 70%;
  }
  
input[type=text],input[type=email] {
    width: 75%;
    border-radius: 5px;
    border: solid;
    border-width: 1px;
    font-size: 20px;
}


#submitWin {
    /* display: none; */
    position: absolute;
    z-index: 50;
    top: 5%;
    background: #F391BC;
    border-radius: 25px;
    width: 85%;
    padding:2% 5%;
    min-height: 50%;  
}

.submitBTN {

    width: 80%;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: 10px;

}

.Montserrat400{
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
    color: black;
    padding:0%; font-size: 14px;

}

.Montserrat700{
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
    color: black; padding:0%; font-size: 24px;
    margin: 0;
}

.hidden{
    display: none; 
}

.form-messages{

    margin: 10px;

}

.form-images{

    width:80%;
    position:relative;
    padding:0px;
    margin: 0;

}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
	font-weight: 400;
    font-size: 8px;
    color: white;
    text-align: center;
 }

 .loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 
