.contact-holder {
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wraper {
    width: 60%;
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 50px;
    border-radius: 16px;
    background: rgba(14, 10, 10, 0.315);;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.37);
}

.cnt-form {
    background-color: transparent;
    margin: auto;
}

h1 {
    margin: auto;
}

.cnt-form input {
    width: 400px;
    height: 25px;
}

.cnt-form textarea {
    width: 400px;
}

.btn {
    width: 145px;
    height: 30px;
    transform: skewX(-15deg);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #EA530F;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-a {
    display: inline-block;
    padding: 12px 31px 12px 31px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    font-weight: 400;
}

.btn-a span {
    display: inline-block;
    transform: skewX(15deg); /* Vraća tekst u normalan položaj */

}


.btn:hover {
    transform: skewX(-15deg) scale(1.05);
    box-shadow: rgba(12, 1, 8, 0.4) 5px 5px, rgba(2, 1, 1, 0.3) 10px 10px, rgba(0, 0, 0, 0.2) 15px 15px, rgba(0, 0, 0, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
    cursor: pointer;
}




@media only screen and (max-width: 900px) {
    .cnt-form input {
        width: 320px;
        height: 20px;
    }
    
    .cnt-form textarea {
    width: 320px;
    }
    
    .wraper {
        width: auto;
        padding: 15px;
    }
}



