/* profile.css */

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f0f0f0;
  }
  
  .profile-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 40px auto;
    gap: 32px;
    padding: 0 24px;
  }
  
  .profile-info,
  .profile-form,
  .password-form {
    flex: 1;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  
  .profile-info {
    text-align: center;
  }
  
  .profile-info h3 {
    margin-bottom: 16px;
    font-size: 20px;
    color: #333;
  }
  
  .profile-info p {
    margin: 12px 0;
    font-size: 18px;
    color: #444;
  }
  
  .profile-pic-preview {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid #ccc;
  }
  
  .profile-form h2,
  .password-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
  }
  
  .profile-form label,
  .password-form label {
    display: block;
    margin: 12px 0 6px;
    font-weight: bold;
    color: #333;
  }
  
  .profile-form input,
  .password-form input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }
  
  .profile-form button,
  .password-form button,
  .profile-info button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: #8AAAE5;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 12px;
  }
  
  .profile-form button:hover,
  .password-form button:hover,
  .profile-info button:hover {
    background-color: #7296d3;
  }
  