@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');

*, body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    height: 100%;
    background: linear-gradient(0deg, rgba(21, 39, 51, 1), rgb(49, 90, 74));
    overflow: scroll;
}

.like-animation {
    width: 0;
    height: 0;
    padding: 10px;
    opacity: 0;
    z-index: 3000;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
    display: table
}

.like-animation span {
    display: none;
    vertical-align: middle;
    color: #f1f1f1
}

.like-animation.fuchs {
    background: url(../img/fox-svgrepo-com.svg?nocache=1) no-repeat 50%;
    background-size: contain;
    -webkit-animation: a 2s;
    -webkit-animation-fill-mode: forwards;
    animation: a 2s;
}

.like-animation.liked {
    background: url(../img/in-love-svgrepo-com.svg?nocache=1) no-repeat 50%;
    background-size: contain;
    -webkit-animation: b 2s;
    -webkit-animation-fill-mode: forwards;
    animation: b 2s;
}

.like-animation.disliked {
    background: url(../img/sad-svgrepo-com.svg?nocache=1) no-repeat 50%;
    background-size: contain;
    -webkit-animation: b 2s;
    -webkit-animation-fill-mode: forwards;
    animation: b 2s
}

@-webkit-keyframes a {
    0% {
        opacity: 0;
        width: 0;
        height: 0
    }

    80% {
        opacity: 1;
        width: 100%;
        height: 100%
    }
}

@keyframes a {
    0% {
        opacity: 0;
        width: 0;
        height: 0
    }

    80% {
        opacity: 1;
        width: 100%;
        height: 100%
    }
}

@-webkit-keyframes b {
    0% {
        opacity: 0;
        width: 0;
        height: 0
    }

    80% {
        opacity: 1;
        width: 100%;
        height: 100%
    }
}

@keyframes b {
    0% {
        opacity: 0;
        width: 0;
        height: 0
    }

    80% {
        opacity: 1;
        width: 100%;
        height: 100%
    }
}

.bg.ol {
    background: url('../img/ol.png') no-repeat;
    background-size: 40%;
    background-position: left top;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.bg.or {
    background: url('../img/or.png') no-repeat;
    background-size: 40%;
    background-position: right top;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
}

.bg.ul {
    background: url('../img/ul.png') no-repeat;
    background-size: 40%;
    background-position: left bottom;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.form-holder{
    background: url('../img/kranz.png') no-repeat;
    background-blend-mode: overlay;
    background-size: 100%;
    background-position: center center;
    overflow: visible;
}

@media only screen and (max-width: 600px) {
    .form-holder {
        background-size: 200%;
    }
}

.form-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.form-holder .form-content {
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px;
}

.form-content .form-items {
    border: 3px solid #fff;
    padding: 40px;
    display: inline-block;
    width: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.form-content h3 {
    color: #fff;
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-content .btn {
    margin: 5px;
}

.form-content h3.form-title {
    margin-bottom: 30px;
}

.form-content p {
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 30px;
}


.form-content label, .was-validated .form-check-input:invalid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label{
    color: #fff;
}

.form-content input[type=text], .form-content input[type=password], .form-content input[type=email], .form-content select {
    width: 100%;
    padding: 9px 20px;
    text-align: left;
    border: 0;
    outline: 0;
    border-radius: 6px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 300;
    color: #8D8D8D;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 16px;
}


.btn-primary{
    background-color: #6C757D;
    outline: none;
    border: 0px;
    box-shadow: none;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    background-color: #495056;
    outline: none !important;
    border: none !important;
    box-shadow: none;
}

.form-content textarea {
    position: static !important;
    width: 100%;
    padding: 8px 20px;
    border-radius: 6px;
    text-align: left;
    background-color: #fff;
    border: 0;
    font-size: 15px;
    font-weight: 300;
    color: #8D8D8D;
    outline: none;
    resize: none;
    height: 120px;
    -webkit-transition: none;
    transition: none;
    margin-bottom: 14px;
}

.form-content textarea:hover, .form-content textarea:focus {
    border: 0;
    background-color: #ebeff8;
    color: #8D8D8D;
}

.mv-up{
    margin-top: -9px !important;
    margin-bottom: 8px !important;
}

.invalid-feedback{
    color: #ff606e;
}

.valid-feedback{
    color: #2acc80;
}