
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: #f0f2f5;
    
   
}
.main-container{
 display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    font-family: Arial, sans-serif;
}
.profile-container {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.profile-container h1{
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.user-img img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}
.user-detls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.user-detls label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    display: block;
}
.user-detls input {
    width: 100%;
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}
.save-btn {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}
.save-btn:hover {
    transform: scale(1.05);
}
@media (max-width: 800px) {
    .profile-container {
        width: 100%;
        padding: 2rem;
    }
    .user-img img {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 480px) {
    .profile-container {
        width: 90%;
        padding: 2rem;
    }
    .user-img img {
        width: 100px;
        height: 100px;
    }
}
