@font-face {
    font-family: Overpass;
    src: url(/wwwroot/font/Overpass/Overpass-Medium.ttf)
}

body {
    background-color: #F6F4F0;
    font-family: Overpass;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    display: flex;
    height: fit-content;
    background-color: white;
    flex-direction: row;
    align-items: center;
    position: fixed;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 1px 20px -10px;
}

.reiner_logo {
    width: 150px;
    margin: 20px 6%;
}

p {
    font-size: 20px;
    color: #2c2c2c;
}


h2 {
    font-size: 30px;
    color: #2c2c2c;
}

.text {
    margin: 1% 7% 2% 6%;
    max-width: 650px;
    color: #2c2c2c;
}

.bigdiv {
    margin-top: 220px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.smalldiv {
    background-color: white;
    min-height: 450px;
    width: 45%;
    min-width: 400px;
    margin: 0 10px 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.susy_logo {
    width: 100px;
    margin: 3% 0% 1% 6%;
}

.inputs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 95%;
    margin: 6%;
}

input {
    font-family: Overpass;
    font-size: 20px;
    padding: 10px;
    border: 0;
    border-bottom: black solid 1px;
    margin-left: 1%;
    width: 80%;
}

    input:focus {
        outline: none;
    }

    input::-ms-clear, input::-ms-reveal {
        display: none;
    }

i {
    color: #2c2c2c;
    margin-top: 17px;
}

.button {
    font-family: Overpass;
    font-size: 20px;
    padding: 10px 15px;
    border: 0;
    border-radius: 3px;
    margin: 20px 6%;
    min-width: max-content;
    background-color: #FBBA07;
    text-decoration: none;
    color: #2c2c2c;
}

    .button:hover {
        background-color: #fbba07a9;
        cursor: pointer;
    }

    .button:active {
        background-color: #FBBA07;
    }

#picture_right {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: end;
    justify-content: center;
    padding: 60px 0px 15px 0px;
    background-image: linear-gradient(rgba(0,0,0,0), #F6F4F0, #F6F4F0);
}

.footer_text {
    text-decoration: none;
    color: #2c2c2c;
    margin-right: 40px;
}

@media screen and (max-width:878px) {
    .bigdiv {
        flex-direction: column;
        margin-top: 100px;
    }
}
