.container {
    width: 100%;
    max-width: 850px;
    margin: auto;
}

.heading {
    font-size: 24px;
}

.edit_profile_container {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
}

.profile_image_container {
    position: relative;
    height: 130px;
    width: 120px;
    border-radius: 15px;
    border: 4px solid #000;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile_image {
    height: calc(100%);
    width: calc(100%);
    border-radius: inherit;
}
.change_image {
    position: absolute;
    bottom: 0;
    background: none;
    border: none;
    outline: none;
    background: var(--secondary-color-light);
    color: #fff;
    width: 100%;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    padding: 5px 0;
    opacity: 0.9;
    cursor: pointer;
}

.other_info {
    margin-top: 20px;
}

.submit_button {
    padding: 15px 30px;
    background: var(--gradient);
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 7px;
    font-weight: 600;
    text-transform: uppercase;
}
.submit_button:active {
    transform: scale(0.98);
}
.success_message {
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    background: var(--success);
    font-weight: bold;
    margin-bottom: 20px;
}

@media screen and (min-width: 700px) {
    .edit_profile_container {
        grid-template-columns: 1fr 4fr;
    }
    .other_info {
        margin-top: 0px;
    }
}
