.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 0px);

}

.container {
    display: flex;
    /* justify-content: space-between;
    align-items: center;
    padding: 50px; */
    width: 1300px;
    /* padding: 0 10%; */
    /* margin: 0 auto; */
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 600px;
}

.contact-left {
    /* background: #000; */
    width: 80%;
    border-radius: 30px 0 0 30px;
}

.contact-right {
    border-radius: 0px 30px 30px 0;
    display: flex;
    height: 100%;
    width: 20%;
    background-color: #7F237A;
}

.contact-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    /* align-items: center; */
    z-index: 1;
    padding: 50px;
    gap: 60px;
    /* justify-content: center; */
}

.contact-form {
    display: flex;
    flex-direction: column;
    /* padding: 20px; */
    width: 60%;
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-form h2 span {
    color: #7F237A;
}

.contact-form p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    max-width: 545px;
}

.contact-form-container input, .contact-form-container textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    resize: none;
}

.contact-form-container button {
    background-color: #8e44ad;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.contact-form-container button:hover {
    background-color: #732d91;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.contact-info div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info span {
    font-size: 16px;
    color: #8e44ad;
    font-weight: bold;
    margin-bottom: 5px;
}

.map {
    display: flex;
    width: 40%;
}

.map img {
    width: 100%;
    /* border-radius: 20px; */
}

.map iframe {
    width: 100%;
    /* border-radius: 20px; */
}


@media screen and (max-width: 1200px) {
    .container {
        margin-top: 50px;
        width: 90%;
    }

    .contact-content {
        align-items: center;
        /* justify-content: center; */
    }

    .map iframe {
        width: 100%;
        height: 400px;
        /* border-radius: 20px; */
    }

}

@media screen and (max-width: 1350px) {
    .container {
        margin-top: 50px;
        width: 90%;
    }

    .contact-content {
        align-items: center;
        /* justify-content: center; */
    }

    .map iframe {
        width: 100%;
        height: 400px;
        /* border-radius: 20px; */
    }

}

@media screen and (max-width: 900px) {
    .container {
        flex-direction: column;
        /* height: fit-co; */
        height: fit-content;
        width: 90%;
    }

    .contact-left {
        width: 100%;
        border-radius: 30px 30px 0 0;
        height: 700px;
    }

    .contact-right {
        width: 100%;
        border-radius: 0 0 30px 30px;
        height: 300px;
    }

    .contact-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .contact-form {
        width: 100%;
    }

    .map {
        width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .contact-left {
        width: 100%;
        border-radius: 30px 30px 0 0;
        height: 700px;
    }

    .contact-right {
        width: 100%;
        border-radius: 0 0 30px 30px;
        height: 200px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    .contact-form p {
        font-size: 14px;
    }

    .contact-content {
        padding: 10px;
    }

    .contact-form-container input, .contact-form-container select {
        padding: 10px;
        margin-bottom: 14px;
        font-size: 14px;
    }

    .contact-form-container button {
        padding: 10px;
        font-size: 17px;
    }

    .map iframe {
        width: 100%;
        height: 200px;
        /* border-radius: 20px; */
    }

    .contact-info {
        flex-direction: column;
        gap: 0px;
    }


}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}