section.form-wrapper {
    width: 40%;
    margin: auto;
    padding-top: 0;

}

.form-group {
    position: relative;
}

.form-group label {
    margin: 0;
    position: absolute;
    top: 12px;
    left: 10px;
    font-size: 16px;
    height: 30px;
    transition: all 0.1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 10px;
    pointer-events: none;

}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent !important;
    line-height: 2.5 !important;
    border-radius: 5px;
    width: 100%;
    color: var(--white)
}

.form-group textarea:focus {
    background: transparent;
}

.form-group input:focus,
.form-group input:not(:placeholder-shown),
.form-group input:active,
.form-group textarea:active,
.form-group textarea:focus {
    color: var(--white);
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group input:active+label,
.form-group textarea:active+label,
.form-group select:valid+label,
.form-group textarea:focus+label {
    top: -15px;
    font-size: 14px;
    background-color: var(--black);
}

section.form-wrapper button.submit-btn {
    width: 100%;
    height: 50px;
    color: var(--white);
    border: none;
    border-radius: 10px;
    background-color: var(--blue);
    font-weight: 500
}



.alert {
    position: sticky;
    top: calc(100vh - 100px);

    width: 50%;
    margin: auto;
    text-align: center;
    font-size: 18px;
    z-index: 99999;
    display: none;
}
.alert.show{
    display: block;
}

@media only screen and (max-width:1200px) {
    section.form-wrapper {
        width: 80%;
    }
}

@media only screen and (max-width:991px) {
    section.form-wrapper {
        width: 100%;
    }
    .alert{
        width: 90%;
    }
}

