
  body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    padding-top: 80px;
  }

  .profile-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
  }

  .profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .profile-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
  }

  .profile-submit-btn {
    background: #0055aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    max-width: 700px;
  }

  .profile-submit-btn:hover {
    background: #003f7f;
  }

  .profile-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #ddd;
  }

  .profile-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    border-bottom: 3px solid transparent;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
  }

  .profile-tab:hover {
    background-color: #f0f4ff;
    color: #0055aa;
  }

  .profile-tab.active {
    color: #0055aa;
    border-bottom: 3px solid #0055aa;
    background-color: transparent;
  }

  .profile-section {
    display: none;
    padding: 10px 0;
  }

  .profile-section.active {
    display: block;
  }

.profile-form-group {
  width: 100%;
  max-width: 700px;
  margin-bottom: 16px;
}

  .profile-form-group label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 6px;
  }

.profile-form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}

  .profile-message {
    text-align: center;
    padding: 12px;
    margin: 0 auto 20px;
    border-radius: 8px;
    max-width: 700px;
  }

  .profile-success-message {
    background-color: #e0ffe0;
    color: #0a0;
  }

  .profile-error-message {
    background-color: #ffe0e0;
    color: #c00;
  }
  .profile-tab-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

    .input-icon {
        position: relative;
        margin-bottom: 16px;
    }
    
    .input-icon i {
        position: absolute;
        top: 40%;
        left: 12px;
        transform: translateY(-50%);
        color: #999;
        font-size: 14px;
    }
    
    .input-icon input {
        width: 100%;
        padding: 12px 12px 12px 38px; /* espaço para o ícone */
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }
    
    .input-icon input:focus {
        border-color: #0066cc;
        box-shadow: 0 0 4px rgba(0, 102, 204, 0.2);
        outline: none;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

.profile-form-group-pass {
  display: flex;
  justify-content: space-between;
  gap: 16px; /* espaço entre os campos */
  margin-bottom: 16px;
    width: 100%;
  max-width: 700px;
 
}

.input-icon-pass {
  position: relative;
  width: 100%;
}

.input-icon-pass input {
  width: 100%;
  padding: 12px 12px 12px 38px; /* espaço para o ícone */
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.input-icon-pass i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
}

.input-icon-pass input:focus {
  border-color: #0066cc;
  box-shadow: 0 0 4px rgba(0, 102, 204, 0.2);
  outline: none;
}

/* Garante que os campos fiquem lado a lado com largura igual */
.profile-form-group-pass > .input-icon-pass {
  flex: 1;
}

