*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f7fb;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:30px;
}


.checkbox-container{
    border:1px solid #d1d5db;
    border-radius:8px;
    padding:12px;
    max-height:220px;
    overflow-y:auto;
    background:#fff;
}

.checkbox-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.checkbox-item label{
    cursor:pointer;
}

.full-width{
    grid-column:1/-1;
}

/* Photo Upload Section Styles */
.photo-upload-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.photo-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed #d1d5db;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.photo-preview:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.photo-preview i {
    font-size: 24px;
    color: #64748b;
    margin-bottom: 5px;
}

.photo-preview span {
    font-size: 11px;
    color: #64748b;
    text-align: center;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.upload-btn {
    padding: 10px 18px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.remove-photo-btn {
    padding: 10px 18px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.remove-photo-btn:hover {
    background: #dc2626;
    transform: translateY(-1px);
} 
.container{
    width:100%;
    max-width:750px;

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:
    0 8px 30px rgba(0,0,0,0.2);
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.header h1{
    font-size:34px;
    color:#0f172a;
    margin-bottom:10px;
}

.header p{
    color:#64748b;
    font-size:18px;
}

.back-btn{
    background:#eef2ff;

    color:#2563eb;

    border:none;

    padding:14px 22px;

    border-radius:12px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;
}

.back-btn:hover{
    background:#dbeafe;
}

.form-grid{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;

    margin-top:35px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:18px;
    font-weight:600;
    color:#334155;

    margin-bottom:10px;
}

.form-group input,
.form-group select{

    height:40px;

    border:1px solid #d1d5db;

    border-radius:14px;

    padding:0 16px;


    font-size:16px;

    outline:none;
}

.form-group input:disabled,
.form-group select:disabled{
    background:#f8fafc;
    cursor:not-allowed;
}

.button-container{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-top:40px;
}

.form-status {
    margin-top: 16px;
    color: #475569;
    font-size: 14px;
    min-height: 20px;
    line-height: 1.4;
}

.save-btn.is-loading,
.save-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.edit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.save-btn{

    background:#2563eb;
    color:white;

    border:none;

    padding:15px 28px;

    border-radius:14px;

    cursor:pointer;

    font-size:17px;

    font-weight:600;
}

.save-btn:hover{
    background:#1d4ed8;
}

.edit-btn{

    background:#eef2ff;
    color:#2563eb;

    border:none;

    padding:15px 28px;

    border-radius:14px;

    cursor:pointer;

    font-size:17px;

    font-weight:600;
}

.edit-btn:hover{
    background:#dbeafe;
}

@media(max-width:768px){

    .form-grid{
        grid-template-columns:1fr;
    }

    .header{
        flex-direction:column;
        gap:20px;
    }

    .button-container{
        flex-direction:column;
        gap:15px;
    }

    .save-btn,
    .edit-btn{
        width:100%;
    }
}