.container-main {
    font-family: 'tf2secondary', arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 32px;
    font-family: 'tf2build';
}

.bankGotic {
    font-family: 'bankGotic';
}

.section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.avatar-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ddd;
    overflow: hidden;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #eee;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.change-btn {
    background-color: #666666;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'tf2secondary';
    font-size: 14px;
    transition: background-color 0.3s;
}

.change-btn:hover {
    background-color: #2980b9;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    /* border-radius: 8px; */
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: #777;
}

.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    bottom: 50%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 18px;
}

.submit-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #c0392b;
}

.divider {
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}

.account-delete-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'tf2secondary';
    width: 100%;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.account-delete-btn:hover {
    background-color: #c0392b;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .avatar-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}