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

@font-face {
    font-family: "Satoshi";
    src: url(/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff2);
    font-weight: 600;
}

@font-face {
    font-family: "Satoshi";
    src: url(/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.woff2);
    font-weight: 500;
}

@font-face {
    font-family: "Satoshi";
    src: url(/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff2);
    font-weight: 400;
}

@font-face {
    font-family: "Satoshi";
    src: url(/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff2);
    font-weight: 300;
}

@font-face {
    font-family: "Satoshi";
    src: url(/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Light.woff2);
    font-weight: 200;
}


body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Satoshi', sans-serif;
    background-color: #7C1818;
    background-image: url(/img/effects.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;

}

form{
    height: 550px;
    width: 900px;
    background: white;
    border-radius: 15px;
    display: flex;
}

.contact-left{
    padding: 3rem 2rem;
    /* display: flex;
     flex-direction: column;
     justify-content: space-between;*/
 }

.contact-right{
    background: url("img/formgray.jpg");
    background-position: center;
    background-size: 900px;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}

.contact-left,.contact-right{
    flex: 1;
}

.input{
    width: 250px;
    height: 30px;
}

.big{
    width: 100%;
    height: 100px;
}

button{
    background: cornflowerblue;
    border-radius: 3px;
    padding: 12px 5px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: #33B249;
    width: 100%;
    border: none;
}

.checkbox-label{

}

.privacy-container{
    position: relative;
    display: flex;
}

.checkbox {
    cursor: pointer;
}

.checkbox-container{
    position: relative;
    height: 1rem;
    width: 1rem;
    border-radius: 3px;

    margin-top: 10px;
    margin-bottom: 10px;
}

.checkmark,.checkbox{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.input-container{
    margin-top: 10px;
    margin-bottom: 10px;
}

.input{
    padding:5px;
    border: 1px solid;
    border-color: rgba(26, 26, 26, 0.47);
    border-radius: 3px;
    margin-top: 2px;
}

textarea{
    padding:5px;
    height: 90px;
    width: 100%;
    border: 1px solid;
    border-color: rgba(26, 26, 26, 0.47);
    border-radius: 3px;
    margin-top: 2px;
    resize: none;
}

h1{
    font-size: 26px;
}

h3{
    font-weight: 400;
}

label{
    font-size: 14px;
    font-weight: 500;
}

.checkbox-label{
    margin: auto;
    margin-left: 5px;
}

@media only screen and (max-width: 900px){
    .contact-right{
        display: none;
    }
    form{
        height: 550px;
        width: 70vw;
    }
    label{
        font-size: 13px;
    }
}

@media only screen and (max-width: 600px){
    form{
        width: 95vw;
    }
}

