.modal#change-steam-profile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0,0, 0);
    z-index: 999;
    justify-content: center;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    transition: background-color 0.2s ease;
}

.modal#change-steam-profile-modal .modal-header {
    font-family: Inter, sans-serif;
    transition: transform 0.2s ease;
    background-color: #061D19;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    width: 100%;
    color: white;
    box-sizing: border-box;
}
.modal#change-steam-profile-modal .image-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.modal#change-steam-profile-modal .image-container img{
    max-width: 72%;
}
.modal#change-steam-profile-modal .modal-header h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
}

.modal#change-steam-profile-modal p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    opacity: 0.2;
    text-align: center;
    margin: 0 auto;
    line-height: 20px;
    margin-bottom: 20px;
}

.modal#change-steam-profile-modal .input-group {
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal#change-steam-profile-modal .input-group label {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 10px;
    display: block;
}

.modal#change-steam-profile-modal .input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #07372F;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.modal#change-steam-profile-modal .input-group::placeholder {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    opacity: 0.5;
}

.modal#change-steam-profile-modal .submit-button {
    background-color: #14CBB4;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.modal#change-steam-profile-modal .submit-button:hover {
    background-color: #098256;
}

.modal#change-steam-profile-modal .note {
    font-size: 14px;
    color: #fff;
    opacity: 0.4;
    text-align: center;
    margin-top: 10px;
}