.up-form {
    width: 100%;
    max-width: 550px;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08); 
}

.up-box {
    margin-bottom: 22px;
}

.up-box label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
}

.up-box input,
.up-box select,
.up-box textarea {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.up-profile-photo-box {
    width: 160px;
    height: 160px;
    margin: auto;
    position: relative;
}

.up-profile-photo-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eee;
}

.up-edit-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #000a;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.up-album-link {
    position: absolute;
    bottom: -30px;
    right: 0;
    color: #007bff;
    font-size: 14px;
    cursor: pointer;
}

.up-interests-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

.up-int-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
}

.up-int-item input {
    display: none;
}

.up-int-item span {
    font-weight: 500;
}

.up-form button {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-size: 17px;
    cursor: pointer;
}




