﻿body {
    background-color: #f4f7fb;
}

.profile {
    background: linear-gradient(120deg, #1e9c4a, #2fb85f 55%, #14b8a6);
    padding: 26px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    font-size: 19px;
    border-radius: 0 0 22px 22px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(11, 99, 206, 0.18);
}

.avatar-circle {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.profile-sub {
    font-size: 12.5px;
    font-weight: 400;
    opacity: .9;
    margin-top: 2px;
}

.info-section {
    padding: 0 16px 15px;
    max-width: 560px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 2px 8px rgba(16, 40, 80, 0.06);
    border: 1px solid #eef1f6;
}

    .info-item label {
        display: flex;
        align-items: center;
        gap: 7px;
        font-weight: 600;
        color: #5b6472;
        font-size: 12.5px;
        text-transform: uppercase;
        letter-spacing: .3px;
        margin-bottom: 4px;
    }

        .info-item label i {
            color: #1e9c4a;
            font-size: 14px;
        }

    .info-item input {
        border: none;
        outline: none;
        padding: 4px 0;
        font-size: 15.5px;
        color: #1f2937;
        background: transparent;
    }

        .info-item input:focus {
            background: #f7fafd;
        }

.readonly {
    color: #8a94a3 !important;
}

.button {
    text-align: center;
    padding: 6px 16px 26px;
}

    .button button,
    .btn {
        background: linear-gradient(90deg, #1e9c4a, #146c34);
        color: white;
        padding: 13px 30px;
        border: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 8px 18px rgba(11, 99, 206, 0.25);
        transition: transform .15s ease;
    }

        .button .btn:disabled {
            background: #c7cfda;
            box-shadow: none;
            cursor: not-allowed;
        }

        .button .btn:not(:disabled):active {
            transform: scale(0.97);
        }
