* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #242729;
}

.edit-profile {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #242729;
}

.edit-container {
    display: flex;
    gap: 20px;
    width: 60%;
    max-width: 1000px;
    background-color: #181a1b;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #ddd;
}

.profile-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin: 30px;
}

.btn-change-avatar {
    background-color: #00b1dd;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    width: 80%;
}

.btn-change-avatar:hover {
    background-color: #008fb5;
}

.profile-right {
    flex: 2;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    margin-left: 3px;
    font-weight: bold;
    color: #ddd;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2c3134;
    color: #ddd;
}

.form-group input:hover, .form-group textarea:hover {
    border-color: #00b1dd;
    outline: none;
    /* box-shadow: 0 0 5px #00b1dd; */
    background-color: #3a3d3e;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00b1dd;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.save-changes-btn {
    background-color: #00b1dd;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.save-changes-btn:hover {
    background-color: #0089a9;
    transform: translateY(-2px);
}

.save-changes-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .edit-profile{
        padding: 10px 0;
    }

    .edit-container{
        width: 95%;
    }

    .edit-container{
        flex-direction: column;
    }

    .profile-avatar{
        margin-top: 10px;
    }
}

@media (min-width: 601px) and (max-width: 700px) {
    .edit-profile{
        padding: 20px 0;
    }

    .edit-container{
        width: 90%;
    }

    .edit-container{
        flex-direction: column;
    }

    .profile-avatar{
        margin-top: 10px;
    }
}

@media (min-width: 701px) and (max-width: 900px) {
    .edit-profile{
        padding: 20px 0;
    }

    .edit-container{
        width: 90%;
    }

    .edit-container{
        flex-direction: column;
    }

    .profile-avatar{
        margin-top: 10px;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .edit-container{
        width: 80%;
    }
}

@media (min-width: 1201px) and (max-width: 1500px) {
    .edit-container{
        width: 70%;
    }
    
}
