*{
    /* padding: 0px; */
    margin: 0px;
}

h1{
    padding: 0px;
}

body{
    font-family: 'Outfit';
    background: linear-gradient(#c678e0,rgb(134, 43, 159));
}

.contact {
    height: 100vh;
    display: flex;
    align-items:center;
    justify-content: space-evenly;
}


.left {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    padding: 30px;

}

label {
    visibility: hidden;
}

form {
    display: flex;
    flex-direction: column;
    gap: 21px;
    justify-self: center;

}

.contact h1 {
    font-weight: 600;
    color: rgb(223, 188, 242);
    font-size: 40px;
    margin-bottom: 5px;
    text-align: left;


}

.contact hr {
    width: 120px;
    height: 5px;
    border-radius: 10px;
    /* margin-bottom: 20px; */
    border: none;
    /* background-color: aliceblue; */
    background: linear-gradient(90deg, rgb(159, 79, 224),rgb(134, 43, 159));

}

.inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: var(--textColour);
    border-radius: 50px;

}

input:focus, #query:focus {
    border: solid black 2px;
}

input::placeholder {
    color: grey;
}


textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact button {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px 30px;
    font-size: 16px;
    gap: 10px;
    border: none;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(270deg, #ff994f, #fa6d86);
    width: 150px;

}

.contact button img {
    height: 15px;
    color: azure;
}

.right img {
    width: 400px ;
}


@media (max-width:1024px) {
    .inputs {
        max-width: 600px;
        min-width: 300px;
        width: 70vw;
    }
    .right{
        display: none;
    }

    .contact {
        align-items: normal;
        display: grid;
        width: 90vw;
        margin-top: 80px ;
        height: max-content;
        padding: 100px 0px;
    }

    .left {
        width: 100%;
        display: grid;
        padding: 0px;


    }

    .cta-btn {
        justify-self: center;
        width: max-content;
    }

    form {
        display: grid;
        justify-self: center;
    }

    footer {
        bottom: 0px;
    }


}

