@keyframes slideInFlowerTopRight {
    0% {
        transform: translate(10%, -10%);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes slideInFlowerTopLeft {
    0% {
        transform: translate(-10%, -10%) rotateY(180deg);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0) rotateY(180deg);
        opacity: 1;
    }
}

@keyframes slideInFlowerBottomLeft {
    0% {
        transform: translate(-10%, 10%) rotateZ(180deg);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0) rotateZ(180deg);
        opacity: 1;
    }
}

@keyframes slideInFlowerBottomRight {
    0% {
        transform: translate(10%, 10%) rotateX(180deg);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0) rotateX(180deg);
        opacity: 1;
    }
}

.flower {
    animation-duration: 0.5s; /* the duration of the animation */
    animation-timing-function: ease-out; /* how the animation will behave */
    animation-delay: 0s; /* how long to delay the animation from starting */
    animation-iteration-count: 1; /* how many times the animation will play */
    animation-direction: normal;
    animation-fill-mode: both;
}

.animation-reverse {
    animation-direction: reverse;
}

.flower-top-right {
    animation-name: slideInFlowerTopRight; /* the name of the animation we defined above */
    top: 0;
    right: 0;
}

.flower-top-left {
    animation-name: slideInFlowerTopLeft; /* the name of the animation we defined above */
    top: 0;
    left: 0;
}

.flower-bottom-left {
    animation-name: slideInFlowerBottomLeft; /* the name of the animation we defined above */
    bottom: 0;
    left: 0;
}

.flower-bottom-right {
    animation-name: slideInFlowerBottomRight; /* the name of the animation we defined above */
    bottom: 0;
    right: 0;
}

.form-control + .bi {
    position: absolute;
    right: 0;
    padding: 8px 27px;
}

.check-option {
    border: 1px #dee2e6 solid;
    border-radius: 10px;
    padding: 5px 10px;
    padding-left: 2.5rem !important;
    height: 42px;
    display: flex !important;
    align-items: center;
}

.form-check-input {
    margin-top: 0 !important;
    margin-right: 12px;
}

.form-check-label {
    width: 100%;
}

.input-group input {
    border-radius: 0 10px 10px 0;
    border-left: 0 !important;
    height: 42px;
}

.input-group-text {
    border-radius: 10px 0 0 10px !important;
    background-color: inherit !important;
    padding-left: 1rem !important;
    padding-right: 0 !important;
}

input[type="checkbox"]:checked {
    background-color: #0DB5C2 !important;
    border-color: #0DB5C2 !important;
}

.form-check:has(input[type="checkbox"]:checked) {
    border-color: #0DB5C2 !important;
}

div:has(> input.passwordinput), div:has(> input.emailinput), div:has(> input.textinput), div:has(> select.languageinput) {
    position: relative;
}

input.passwordinput, input.emailinput, input.textinput {
    padding: 8px 47px;
}

select.languageinput {
    padding: 8px 42px;
}

div:has(> input.passwordinput):before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 24px;
    height: 42px;
    background: url("../img/lock.svg") center / contain no-repeat;
}

div:has(> input.passwordinput):after {
    content: "";
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    width: 24px;
    height: 42px;
    background: url("../img/eye.svg") center / contain no-repeat;
    cursor: pointer;
}

div:has(> input.emailinput):before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 24px;
    height: 42px;
    background: url("../img/at.svg") center / contain no-repeat;
}



div:has(> select.languageinput):before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 18px;
    height: 42px;
    background: url("../img/translation.svg") center / contain no-repeat;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    background-position: right calc(0.375em + 0.1875rem + 40px) center !important;
}

.alert-block {
    /*height: 42px;*/
    padding: 8px 15px !important;
}

.alert-block ul {
    padding-left: 0px;
}

.alert-block ul li {
    list-style: none;
}

.home-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}
.container-custom {
    margin: 0 auto;
    max-width: 1200px;
}
.card-custom {
    width: 256px;
    height: 112px;
    min-height: 112px;
    background: #FDFDFE;
    border: 2px solid #0DB5C2;
    box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}
.card-custom a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}
.card-custom:hover {
    background-color: #0DB5C2;
    color: white;
}