:root{
    --color-orderr: #343a40;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-image: url('./dist/bg.webp'); /* Path to your image */
}

.contact-main {
    font-family: 'Outfit';
    background-color: rgba(128, 128, 128, 0.767);
    
}

.contact-form {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.2rem;
}

.contact-left-title h2 {
    font-weight: 600;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
}

.contact-left-title hr {
    border: none;
    width: 120px;
    height: 5px;
    background-color: aqua;
    border-radius: 10px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 1.5rem;
    font-weight: 500;
    color: #666;
    border-radius: 0.4rem;
}

.contact-left textarea {
    height: 140px;
    padding-top: 1rem;
    border-radius: 0.3rem;
}

.contact-inputs:focus {
    border: 2px solid var(--color-orderr);
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

.contact-left button {
    padding: 0.5rem 0.7rem;
    background: var(--color-orderr);
    border-radius: 0.4rem;
    color: #fff;
    width: 200px;

}

.contact-left button:hover {
    background: transparent;
    border-color: aqua;
}


@media screen and (max-width: 1020px) {

    .contact-form {
        /* flex-direction: column; */
        flex-wrap: wrap;
    }

    .contact-inputs {
        width: 80vw;
    }

    .contact-right img {
        max-width: 500px;
    }
}