.contact-image-box {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}
.option-button {
    background-color: rgb(0, 110, 224);
    flex: 1;
    margin-bottom: 10px;
    border-radius: 20px;
    padding: 10px;
    color: white;
    border: 0px;
    font-size: 20px;
    cursor: pointer;
    max-height: 50px;
}
.option-button:hover {
    background-color: #003982;
    box-shadow: 0px 0px 10px #003982;
}
input::file-selector-button {
    background-color: transparent;
    border: 0px;
    padding-right: 15px;
    border-right: 2px solid white;
    color: white;
    margin-right: 15px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ccc;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}