.contactRight {
    position: relative;
    border-radius: 20px;
    background: url('https://energytradingmat.vercel.app/assets/contact-bg-CYTI4alw.jpg') no-repeat center center / cover;
    p {
        color: white;
        font-weight: 600;
    }
    h5 {
        color: white;
        font-weight: 600;

    }
}
.contactRight::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #2c6592c7;
    z-index: 1;
    border-radius: 20px;
}
.contactRight * {
    z-index: 2;
}
.inputs {
    p {
        font-size: 14px;
    }
}
.inputs label input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color .3s;
}
.inputs label input:focus {
    border-color: #1890ff;
    outline: none;
}
.contatButton {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    margin: 0 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}
.contatButton::before {
    content: "";
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: black;
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;

}
.contatButton:hover::before {
    width: 300px;
    height: 300px;

}
.contatButton span {
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}